File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ function print_recoverable {
223
223
for BLOB_AND_TIMESTAMP in " ${BLOB_AND_TIMESTAMPS[@]} " ; do
224
224
BLOB=${BLOB_AND_TIMESTAMP:: 40}
225
225
TIME=${BLOB_AND_TIMESTAMP: 41}
226
- DATE=$( [ ! -z " $TIME " ] && timestamp_to_s " $TIME " || echo " (Unknown)" )
226
+ DATE=$( [ -n " $TIME " ] && timestamp_to_s " $TIME " || echo " (Unknown)" )
227
227
228
228
echo " $BLOB $DATE "
229
229
done
@@ -276,7 +276,7 @@ function interactive {
276
276
277
277
BLOB=${BLOB_AND_TIMESTAMP:: 40}
278
278
TIME=${BLOB_AND_TIMESTAMP: 41}
279
- DATE=$( [ ! -z " $TIME " ] && timestamp_to_s " $TIME " || echo " (Unknown)" )
279
+ DATE=$( [ -n " $TIME " ] && timestamp_to_s " $TIME " || echo " (Unknown)" )
280
280
281
281
echo " $BLOB ($DATE )"
282
282
show_summary " ${BLOB} " | head -4 | sed -e ' s/^/> /'
You can’t perform that action at this time.
0 commit comments