Skip to content

Commit 60fd3b0

Browse files
committed
Remove extra space in log message
1 parent cd4abc4 commit 60fd3b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/indexeddb-local-backend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ LocalIndexedDBStoreBackend.prototype = {
435435
* @return {Promise} Resolves if the data was persisted.
436436
*/
437437
_persistSyncData: function(nextBatch, roomsData, groupsData) {
438-
logger.log("Persisting sync data up to ", nextBatch);
438+
logger.log("Persisting sync data up to", nextBatch);
439439
return utils.promiseTry(() => {
440440
const txn = this.db.transaction(["sync"], "readwrite");
441441
const store = txn.objectStore("sync");

0 commit comments

Comments
 (0)