We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd8ebef commit aa635f1Copy full SHA for aa635f1
1 file changed
app/src/processing/app/UpdateCheck.java
@@ -117,7 +117,7 @@ public void updateCheck() throws IOException {
117
long now = System.currentTimeMillis();
118
if (lastString != null) {
119
long when = Long.parseLong(lastString);
120
- if (now - when < ONE_DAY) {
+ if (now - when < ONE_DAY && !Base.DEBUG) {
121
// don't annoy the shit outta people
122
return;
123
}
0 commit comments