Skip to content

Commit

Permalink
Fix latin-1 encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedal987 committed Jun 11, 2024
1 parent c9b8ecf commit cb69ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebs/src/modules/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export async function getConfig(): Promise<Config> {
export async function broadcastConfigRefresh(config: Config) {
return sendPubSubMessage({
type: "config_refreshed",
data: strFromU8(compressSync(strToU8(JSON.stringify(config), true))),
data: strFromU8(compressSync(strToU8(JSON.stringify(config))), true),
});
}

Expand Down

0 comments on commit cb69ee3

Please sign in to comment.