Skip to content

Commit aa635f1

Browse files
committed
Always run update check in Debug
1 parent dd8ebef commit aa635f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/UpdateCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public void updateCheck() throws IOException {
117117
long now = System.currentTimeMillis();
118118
if (lastString != null) {
119119
long when = Long.parseLong(lastString);
120-
if (now - when < ONE_DAY) {
120+
if (now - when < ONE_DAY && !Base.DEBUG) {
121121
// don't annoy the shit outta people
122122
return;
123123
}

0 commit comments

Comments
 (0)