mirror of
https://github.com/luxfi/pics.git
synced 2026-07-27 05:11:31 +00:00
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
'use strict';
|
|
|
|
module.exports = async(db, redis) => {
|
|
|
|
console.log('Updating globalsettings to add uriDecodeFileNames');
|
|
await db.collection('globalsettings').updateOne({ _id: 'globalsettings' }, {
|
|
'$set': {
|
|
'uriDecodeFileNames': false,
|
|
},
|
|
});
|
|
|
|
console.log('Clearing globalsettings cache');
|
|
await redis.deletePattern('globalsettings');
|
|
|
|
};
|