Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
krlaframboise committed Sep 2, 2017
1 parent ef6995a commit f89c435
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ private initialize() {

def autoRefresh() {
logDebug "autoRefresh()..."
def minimumRefreshInterval = (refreshIntervalSettingMinutes * 60 * 1000)
// def minimumRefreshInterval = (refreshIntervalSettingMinutes * 60 * 1000)

if(!state.lastRefresh || ((new Date().time - state.lastRefresh) >= minimumRefreshInterval)) {
// if(!state.lastRefresh || ((new Date().time - state.lastRefresh) >= minimumRefreshInterval)) {
refresh()
}
// }
}

def refresh() {
Expand Down

0 comments on commit f89c435

Please sign in to comment.