Fix updateFromAdmin() broken comparison
This commit is contained in:
parent
48d0572403
commit
0dfe22de36
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ const updateFromAdmin = (state, config) => {
|
|||
try {
|
||||
return ConfigDB.find(configs, ':pleroma', ':frontend_configurations')
|
||||
.get('value')
|
||||
.find(value => value.getIn(['tuple', 0] === ':soapbox_fe'))
|
||||
.find(value => value.getIn(['tuple', 0]) === ':soapbox_fe')
|
||||
.getIn(['tuple', 1]);
|
||||
} catch {
|
||||
return state;
|
||||
|
|
Loading…
Reference in a new issue