Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Simplifying code
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga committed Jan 10, 2017
1 parent 6c57147 commit c33b55c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class Settings {
}

get dbFilePath() {
const dbFileName = (!!this.inAutoTestMode) ? 'mist.test.lokidb' : 'mist.lokidb';
const dbFileName = (this.inAutoTestMode) ? 'mist.test.lokidb' : 'mist.lokidb';
return path.join(this.userDataPath, dbFileName);
}

Expand Down

0 comments on commit c33b55c

Please sign in to comment.