@xuda.io/account_module 1.2.756 → 1.2.757
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 +5 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1247,10 +1247,13 @@ const get_contact_pattern = async function (doc) {
|
|
|
1247
1247
|
let ret = `default-pattern.png`;
|
|
1248
1248
|
|
|
1249
1249
|
if (doc.my_contact) {
|
|
1250
|
-
|
|
1250
|
+
if (doc.account_type === 'business') {
|
|
1251
|
+
} else {
|
|
1252
|
+
ret = `my-pattern.png`;
|
|
1253
|
+
}
|
|
1251
1254
|
} else if (doc.shared_from_uid) {
|
|
1252
1255
|
const shared_from_uid_ret = await get_account_name({ uid_query: doc.shared_from_uid });
|
|
1253
|
-
ret = shared_from_uid_ret.data.
|
|
1256
|
+
ret = shared_from_uid_ret.data.profile_picture;
|
|
1254
1257
|
} else if (doc.contact_uid) {
|
|
1255
1258
|
ret = `xu-pattern.png`;
|
|
1256
1259
|
} else {
|