mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
fix(mobx): use correct key for saving sync options
This commit is contained in:
parent
d73772929d
commit
5737b32271
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ export default class Sync implements Store, Persistent<Data> {
|
||||||
|
|
||||||
toJSON() {
|
toJSON() {
|
||||||
return {
|
return {
|
||||||
enabled: [...this.disabled],
|
disabled: [...this.disabled],
|
||||||
revision: mapToRecord(this.revision),
|
revision: mapToRecord(this.revision),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue