##// END OF EJS Templates
meta: fix write condition.
marcink -
r2539:b5550006 default
parent child Browse files
Show More
@@ -184,7 +184,7 b' def write_metadata_if_needed(event):'
184 except Exception:
184 except Exception:
185 age_in_min = 0
185 age_in_min = 0
186
186
187 if age_in_min < 60 * 60 * 24:
187 if age_in_min > 60 * 60 * 24:
188 return
188 return
189
189
190 try:
190 try:
General Comments 0
You need to be logged in to leave comments. Login now