mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 08:43:09 +02:00
parent
183e5cef8b
commit
e512f8c56d
2 changed files with 6 additions and 1 deletions
|
@ -44,6 +44,7 @@
|
|||
- Fix: 一部の言語でMisskey Webがクラッシュする問題を修正
|
||||
- Fix: チャンネルの作成・更新時に失敗した場合何も表示されない問題を修正 #11983
|
||||
- Fix: 個人カードのemojiがバッテリーになっている問題を修正
|
||||
- Fix: 標準テーマと同じIDを使用してインストールできてしまう問題を修正
|
||||
|
||||
### Server
|
||||
- Enhance: RedisへのTLのキャッシュをオフにできるように
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import { Theme } from '@/scripts/theme.js';
|
||||
import { Theme, getBuiltinThemes } from '@/scripts/theme.js';
|
||||
import { miLocalStorage } from '@/local-storage.js';
|
||||
import { api } from '@/os.js';
|
||||
import { $i } from '@/account.js';
|
||||
|
@ -29,6 +29,10 @@ export async function fetchThemes(): Promise<void> {
|
|||
|
||||
export async function addTheme(theme: Theme): Promise<void> {
|
||||
if ($i == null) return;
|
||||
const builtinThemes = await getBuiltinThemes();
|
||||
if (builtinThemes.some(t => t.id === theme.id)) {
|
||||
throw new Error('builtin theme');
|
||||
}
|
||||
await fetchThemes();
|
||||
const themes = getThemes().concat(theme);
|
||||
await api('i/registry/set', { scope: ['client'], key: 'themes', value: themes });
|
||||
|
|
Loading…
Reference in a new issue