This commit is contained in:
deathbybandaid 2024-02-22 08:18:53 -05:00
parent bff027e052
commit e50f630352

View File

@ -20,6 +20,12 @@ update_from_api() {
# run a loop against each library # run a loop against each library
echo "Emptying Trash for all libraries" echo "Emptying Trash for all libraries"
i=0
while [ $i -lt ${#LOCAL_LIBRARIES_[*]} ]; do
echo ${LOCAL_LIBRARIES_IDS[$i]} is in ${LOCAL_LIBRARIES_TITLES[$i]}
i=$(( $i + 1));
done
for index in ${!LOCAL_LIBRARIES_[*]} for index in ${!LOCAL_LIBRARIES_[*]}
do do
library_id=${LOCAL_LIBRARIES_IDS[$index]} library_id=${LOCAL_LIBRARIES_IDS[$index]}