Skip to content

Commit

Permalink
RAAAAAAAAAAAAAAAAAGH PART 22222
Browse files Browse the repository at this point in the history
  • Loading branch information
beebls committed Mar 11, 2024
1 parent e66b06c commit 2aa63dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/pythonMethods/storeUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function booleanStoreRead(key: string) {
export async function booleanStoreWrite(key: string, value: boolean) {
const deckyRes = await server!.callPluginMethod<{ key: string; val: string }>("store_write", {
key,
value: val ? "1" : "0",
val: value ? "1" : "0",
});
if (!deckyRes.success) {
toast(`Error fetching ${key}`, deckyRes.result);
Expand Down

0 comments on commit 2aa63dd

Please sign in to comment.