We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a842ea commit 7da04bcCopy full SHA for 7da04bc
service/util/socket.ts
@@ -45,14 +45,18 @@ export default class Client {
45
config[obj.arguments[0]] = obj.arguments[1]
46
break
47
case 'shld_fetch_settings':
48
+ // skipcq: JS-0002
49
+ console.log('Broadcasting current settings')
50
this.send(
51
JSON.stringify({
52
method: 'phlx_update_settings',
- arguments: [config],
53
+ arguments: [JSON.stringify(config)],
54
})
55
)
56
57
case 'shld_fetch_stats':
58
59
+ console.log('Broadcasting current stats')
60
61
62
method: 'phlx_update_stats',
0 commit comments