rename IndexedDB database to 'loki-messenger'

This commit is contained in:
sachaaaaa 2018-08-22 12:44:50 +10:00
parent b84ff76faf
commit e3cbf1caeb
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@
window.Whisper = window.Whisper || {};
window.Whisper.Database = window.Whisper.Database || {};
window.Whisper.Database.id = window.Whisper.Database.id || 'signal';
window.Whisper.Database.id = window.Whisper.Database.id || 'loki-messenger';
window.Whisper.Database.nolog = true;
Whisper.Database.handleDOMException = (prefix, error, reject) => {

View file

@ -168,7 +168,7 @@ const migrations = [
];
const database = {
id: 'signal',
id: 'loki-messenger',
nolog: true,
migrations,
};