From 49f72dc86b06cc8b403c22598fa440a6aebf11b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Sol=C3=ADs?= Date: Mon, 10 Feb 2025 21:26:31 +0000 Subject: [PATCH] fix: Correct the typing of the comparison from integer to string --- friendica-remove-invalid-photos.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/friendica-remove-invalid-photos.sh b/friendica-remove-invalid-photos.sh index 651a5f1..5ea6704 100755 --- a/friendica-remove-invalid-photos.sh +++ b/friendica-remove-invalid-photos.sh @@ -57,9 +57,9 @@ loop() { if [[ ! -f "${nlock}" ]]; then touch "${nlock}" fi - if [[ -f "${nlock}" && $(cat "${nlock}") -eq "" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") == "" ]]; then echo "${id}" >"${nlock}" - if [[ -f "${nlock}" && $(cat "${nlock}") -eq "${id}" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") == "${id}" ]]; then read -r n_tmp nt_tmp <"${nfile}" if [[ -n "${n_tmp}" && -n "${nt_tmp}" ]]; then n="${n_tmp}" @@ -191,14 +191,14 @@ loop() { #n is increased only if error_found = 1 touch "${nlock}" fi - if [[ -f "${nlock}" && $(cat "${nlock}") -eq "" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") == "" ]]; then echo "${id}" >"${nlock}" - if [[ -f "${nlock}" && $(cat "${nlock}") -eq "${id}" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") == "${id}" ]]; then read -r n_tmp nt_tmp <"${nfile}" if [[ -n "${n_tmp}" && -n "${nt_tmp}" ]]; then n=$((n_tmp + error_found)) nt=$((nt_tmp + 1)) - if [[ $(cat "${nlock}") -eq "${id}" ]]; then + if [[ $(cat "${nlock}") == "${id}" ]]; then echo "${n} ${nt}" >"${nfile}" if [[ -f "${nlock}" ]]; then echo "" >"${nlock}"