diff --git a/src/renderer/redux/actions/settings.js b/src/renderer/redux/actions/settings.js index 9196dca44..40365b7f8 100644 --- a/src/renderer/redux/actions/settings.js +++ b/src/renderer/redux/actions/settings.js @@ -71,7 +71,7 @@ export function doUpdateIsNight() { return { type: ACTIONS.UPDATE_IS_NIGHT, data: { isNight: (() => { - const startNightMoment = moment('19:00', 'HH:mm'); + const startNightMoment = moment('21:00', 'HH:mm'); const endNightMoment = moment('8:00', 'HH:mm'); return !(momentNow.isAfter(endNightMoment) && momentNow.isBefore(startNightMoment)); })()