From 3f9bb100d7a737f9d63e8efe3433b6d0424521d7 Mon Sep 17 00:00:00 2001 From: booploops <49113086+booploops@users.noreply.github.com> Date: Mon, 28 Feb 2022 22:50:31 -0800 Subject: [PATCH] will now write id to theme.json --- src/main/base/browserwindow.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/base/browserwindow.ts b/src/main/base/browserwindow.ts index 97c33d0c..bbd4a035 100644 --- a/src/main/base/browserwindow.ts +++ b/src/main/base/browserwindow.ts @@ -613,6 +613,7 @@ export class BrowserWindow { let theme = JSON.parse( readFileSync(join(utils.getPath("themes"), "gh_" + apiRepo.id, "theme.json"), "utf8") ); + theme.id = apiRepo.id theme.commit = commit[0].sha; writeFileSync( join(utils.getPath("themes"), "gh_" + apiRepo.id, "theme.json"),