update: migration
This commit is contained in:
parent
69b447a2d8
commit
9ba477a9b3
4 changed files with 7 additions and 7 deletions
|
@ -13,7 +13,7 @@ export abstract class CodingHelper {
|
|||
try {
|
||||
return CodingHelper.decrypt(key, val, true);
|
||||
} catch (error) {
|
||||
console.error("Decryption error:", error);
|
||||
console.error("Decryption error in database-read - can be ignored");
|
||||
if (fallback == "<self>") return val;
|
||||
else return fallback;
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ export abstract class CodingHelper {
|
|||
try {
|
||||
return CodingHelper.encrypt(key, valueToEncrypt, true);
|
||||
} catch (error) {
|
||||
console.error("Encryption error:", error);
|
||||
console.error("Encryption error in database-read - can be ignored");
|
||||
if (fallback == "<self>") return val;
|
||||
return "";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue