mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 19:25:26 -05:00
Fix typo in Unread.union
This commit is contained in:
parent
06f7651bef
commit
558548e6f7
1 changed files with 2 additions and 2 deletions
4
state.js
4
state.js
|
@ -15,9 +15,9 @@ export const Unread = {
|
|||
MESSAGE: "message",
|
||||
HIGHLIGHT: "highlight",
|
||||
|
||||
union: (a, b) => {
|
||||
union(a, b) {
|
||||
const priority = {
|
||||
[Unread.None]: 0,
|
||||
[Unread.NONE]: 0,
|
||||
[Unread.MESSAGE]: 1,
|
||||
[Unread.HIGHLIGHT]: 2,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue