Skip to content

Commit

Permalink
Merge branch 'master' into add
Browse files Browse the repository at this point in the history
  • Loading branch information
baseplate-admin committed Aug 12, 2024
2 parents 1eb1514 + 873d489 commit 88cab0f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/seeder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Checkout Seeder
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'npm'
cache-dependency-path: seeder/package-lock.json
Expand Down
8 changes: 4 additions & 4 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"nprogress": "^0.2.0",
"pretty-bytes": "^6.1.1",
"svelte-intersection-observer": "^1.0.0",
"tailwind-merge": "^2.4.0",
"tailwind-merge": "^2.5.1",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.9",
"vite": "^5.4.0",
Expand Down
6 changes: 3 additions & 3 deletions backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion seeder/src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ app.whenReady().then(() => {
ipcMain.handle("get-app-version", () => app.getVersion());
// Shiinobi
Object.entries(IPC_MAPPING).forEach((item) => {
ipcMain.handle(item[0], item[1]);
ipcMain.handle(item[0], async () => await item[1]());
});

createWindow();
Expand Down
4 changes: 2 additions & 2 deletions seeder/src/main/interfaces/shiinobi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ class Shiinobi {
});
}

public async get_myanimelist_staff_urls() {
public get_myanimelist_staff_urls = async () => {
return await this.#spawn({ command: "get-myanimelist-staff-urls" });
}
};
}

export { Shiinobi };

0 comments on commit 88cab0f

Please sign in to comment.