reformat and store darkmode setting correct in db

This commit is contained in:
2020-07-29 23:00:37 +02:00
parent 8c4b1a836a
commit 827fd6a1b2
3 changed files with 10 additions and 7 deletions

View File

@ -130,6 +130,7 @@ class GeneralSettings extends React.Component {
updateRequest.append('tvshowpath', this.state.tvshowpath);
updateRequest.append('mediacentername', this.state.mediacentername);
updateRequest.append("tmdbsupport", this.state.tmdbsupport);
updateRequest.append("darkmodeenabled", StaticInfos.isDarkTheme());
fetch('/api/Settings.php', {method: 'POST', body: updateRequest})
.then((response) => response.json()