From 5e42881c5c5b2cd314e0689114bd50204e0ea3fc Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Mon, 7 Feb 2022 15:28:46 +0000 Subject: [PATCH] Rename groupcall.txt -> groupcall.json. This will stop groupcall.txt being handled as a 'log file' and instead indicate it's an artifact to be stored alongside the rageshake. The file will still be stored on the rageshake server but the extension will indicate it's not a log file. --- src/settings/rageshake.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/rageshake.js b/src/settings/rageshake.js index d1d69c8..0394d2a 100644 --- a/src/settings/rageshake.js +++ b/src/settings/rageshake.js @@ -189,7 +189,7 @@ export function useSubmitRageshake() { body.append( "file", new Blob([JSON.stringify(json)], { type: "text/plain" }), - "groupcall.txt" + "groupcall.json" ); } }