From 49a6aa980401fcf7c717af27eb4358de63e0c914 Mon Sep 17 00:00:00 2001 From: fred Date: Mon, 11 Apr 2022 14:03:15 +0200 Subject: [PATCH] stop reversing cache callback --- crowdbunker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crowdbunker.sh b/crowdbunker.sh index f6c54d5..a0b49c0 100755 --- a/crowdbunker.sh +++ b/crowdbunker.sh @@ -226,7 +226,7 @@ echo "########################################################################## # Upgrade local history.json with reverse new one if [[ -f ~/.zen/bunkerbox/cache/$VUID/media/history.json ]]; then echo '{ "Videos":' > ~/.zen/bunkerbox/history.json - cat ~/.zen/bunkerbox/cache/$VUID/media/history.json | jq '.[] | reverse' >> ~/.zen/bunkerbox/history.json + cat ~/.zen/bunkerbox/cache/$VUID/media/history.json | jq '.[]' >> ~/.zen/bunkerbox/history.json echo '}' >> ~/.zen/bunkerbox/history.json fi fi