@xuda.io/account_module 1.2.1490 → 1.2.1491
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +1 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -3053,7 +3053,7 @@ export const save_picture_cache = async function (uid, docType, name, file, meta
|
|
|
3053
3053
|
};
|
|
3054
3054
|
|
|
3055
3055
|
export const get_picture_cache = async function (uid, docType, name) {
|
|
3056
|
-
let opt = { selector: {}, limit: 1 };
|
|
3056
|
+
let opt = { selector: { name }, limit: 1 };
|
|
3057
3057
|
|
|
3058
3058
|
const ret = await db_module.find_couch_query('xuda_cache', from_opt);
|
|
3059
3059
|
};
|