don't log theme with randomTheme

This commit is contained in:
2023-12-19 17:09:51 +01:00
parent ecd68ae7c6
commit adf343e0bf

View File

@ -3076,7 +3076,6 @@ export class UserAPI {
let theme_names = this.getThemes(); let theme_names = this.getThemes();
let selected_theme = theme_names[Math.floor(Math.random() * theme_names.length)]; let selected_theme = theme_names[Math.floor(Math.random() * theme_names.length)];
this.app.readTheme(selected_theme); this.app.readTheme(selected_theme);
this.app.api.log(selected_theme);
} }
public nextTheme = (): void => { public nextTheme = (): void => {