Skip to content

Commit

Permalink
fixes #38
Browse files Browse the repository at this point in the history
  • Loading branch information
edsu committed May 3, 2020
1 parent 3ee0c2c commit 97c3acb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ app.on('ready', async () => {
}
}
// unset any active resetTime since it may no longer be relevant
if (data.settings.resetTime) {
if (data.settings && data.settings.resetTime) {
data.settings.resetTime = null
}
event.returnValue = data
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hydrator",
"version": "0.0.6",
"version": "0.0.7",
"description": "A desktop utility to hydrate Twitter ID datasets.",
"main": "init.js",
"author": {
Expand Down

0 comments on commit 97c3acb

Please sign in to comment.