We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17ed5fe + a8dbb71 commit a161b09Copy full SHA for a161b09
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