Skip to content

Commit

Permalink
Remove extra space in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jryans committed Mar 10, 2021
1 parent cd4abc4 commit 60fd3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/indexeddb-local-backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ LocalIndexedDBStoreBackend.prototype = {
* @return {Promise} Resolves if the data was persisted.
*/
_persistSyncData: function(nextBatch, roomsData, groupsData) {
logger.log("Persisting sync data up to ", nextBatch);
logger.log("Persisting sync data up to", nextBatch);
return utils.promiseTry(() => {
const txn = this.db.transaction(["sync"], "readwrite");
const store = txn.objectStore("sync");
Expand Down

0 comments on commit 60fd3b0

Please sign in to comment.