@xuda.io/account_module 1.2.1471 → 1.2.1473
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 +9 -3
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2235,6 +2235,10 @@ const set_contact_profile_picture = async function (uid, contact_id, metadata, j
|
|
|
2235
2235
|
headers,
|
|
2236
2236
|
);
|
|
2237
2237
|
|
|
2238
|
+
if (file_ret.code < 0) {
|
|
2239
|
+
throw new Error(file_ret.data);
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2238
2242
|
let { code: contact_code, data: contact_obj3 } = await db_module.get_app_couch_doc(account_profile_info.app_id, contact_id);
|
|
2239
2243
|
contact_obj = contact_obj3;
|
|
2240
2244
|
contact_obj.profile_avatar_obj = file_ret.data;
|
|
@@ -2243,8 +2247,8 @@ const set_contact_profile_picture = async function (uid, contact_id, metadata, j
|
|
|
2243
2247
|
const contact_save_ret = await db_module.save_app_couch_doc(account_profile_info.app_id, contact_obj);
|
|
2244
2248
|
await update_contact_profile_picture_status(uid, contact_id, 3);
|
|
2245
2249
|
}
|
|
2246
|
-
} catch (
|
|
2247
|
-
await update_contact_profile_picture_status(uid, contact_id,
|
|
2250
|
+
} catch (err) {
|
|
2251
|
+
await update_contact_profile_picture_status(uid, contact_id, 1, err.message);
|
|
2248
2252
|
}
|
|
2249
2253
|
};
|
|
2250
2254
|
|
|
@@ -2259,11 +2263,13 @@ const update_account_profile_picture_status = async function (uid, stat, error)
|
|
|
2259
2263
|
}
|
|
2260
2264
|
};
|
|
2261
2265
|
|
|
2262
|
-
const update_contact_profile_picture_status = async function (uid, contact_id, stat) {
|
|
2266
|
+
const update_contact_profile_picture_status = async function (uid, contact_id, stat, error) {
|
|
2263
2267
|
const account_profile_info = await get_active_account_profile_info(uid);
|
|
2264
2268
|
try {
|
|
2265
2269
|
let doc = await db_module.get_app_couch_doc_native(account_profile_info.app_id, contact_id);
|
|
2266
2270
|
doc.profile_avatar_stat = stat;
|
|
2271
|
+
doc.profile_avatar_error = error;
|
|
2272
|
+
|
|
2267
2273
|
const save_ret = await db_module.save_app_couch_doc_native(account_profile_info.app_id, doc);
|
|
2268
2274
|
} catch (err) {
|
|
2269
2275
|
console.error(err);
|