remove datelimit depending on connection status as it doesn't make a real difference any more

This commit is contained in:
2018-07-05 17:57:01 +02:00
parent 39a03fce20
commit 400a6ac017

View File

@@ -44,13 +44,8 @@ function debugmsg {
}
# Set date until when files are searched for, depending on current connection status
if [ "${var_conn}" == "off" ]; then
DATELIMIT="1d"
echo "Datelimit for search set to $DATELIMIT"
else
DATELIMIT="14d"
echo "Datelimit for search set to $DATELIMIT"
fi
DATELIMIT="30d"
echo "Datelimit for search set to $DATELIMIT"
while read line; do
TAG=$(echo $line | cut -d";" -f1)