We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ac40bd commit 10ddc03Copy full SHA for 10ddc03
src/generic_core/social.ts
@@ -606,6 +606,9 @@ export function notifyUI(networkName :string, userId :string) {
606
var networkData :Object = null;
607
if (tokenObj) {
608
networkData = tokenObj.networkData;
609
+ if (this.name === 'Cloud' && (typeof networkData) !== 'string') {
610
+ networkData = JSON.stringify(networkData);
611
+ }
612
} else if (userId) {
613
networkData = userId;
614
}
0 commit comments