Fix note mod id

This commit is contained in:
Tarrgon
2026-06-30 16:20:08 -04:00
parent a1ed39e093
commit 01abfc9a59
+2 -1
View File
@@ -295,7 +295,8 @@ export class Database {
return data.map((note) => { return data.map((note) => {
return { return {
...note, ...note,
user_id: Encrypter.decrypt(note.user_id) user_id: Encrypter.decrypt(note.user_id),
mod_id: Encrypter.decrypt(note.mod_id)
}; };
}); });
} }