Final adjustments

This commit is contained in:
Luca 2021-03-27 19:02:53 +01:00
parent 3cca33eac3
commit dcef4261a7
1 changed files with 2 additions and 1 deletions

View File

@ -71,6 +71,7 @@ const actions = {
const profileIndex = profiles.findIndex((profile) => { const profileIndex = profiles.findIndex((profile) => {
return profile._id === rootState.settings.defaultProfile return profile._id === rootState.settings.defaultProfile
}) })
if (profileIndex !== -1) { if (profileIndex !== -1) {
dispatch('updateActiveProfile', profileIndex) dispatch('updateActiveProfile', profileIndex)
} }
@ -103,7 +104,7 @@ const actions = {
textColor: textColor, textColor: textColor,
subscriptions: [] subscriptions: []
} }
console.log('DIS DEFAULT', defaultProfile)
profileDb.update({ _id: 'allChannels' }, defaultProfile, { upsert: true }, (err, numReplaced) => { profileDb.update({ _id: 'allChannels' }, defaultProfile, { upsert: true }, (err, numReplaced) => {
if (!err) { if (!err) {
dispatch('grabAllProfiles') dispatch('grabAllProfiles')