diff options
Diffstat (limited to 'modules/mixtapes/lib.sh')
-rwxr-xr-x | modules/mixtapes/lib.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mixtapes/lib.sh b/modules/mixtapes/lib.sh index 4738a35..04551e0 100755 --- a/modules/mixtapes/lib.sh +++ b/modules/mixtapes/lib.sh @@ -60,9 +60,9 @@ _ak_modules_mixtapes_get_local_latest(){ cd $tempdir if [ -z "$1" ] then - ak zchain --crawl -l 1 | jq > aktempzblock + _ak_zchain_crawl -l 1 | jq > aktempzblock else - ak zchain --crawl -l 1 $1 | jq > aktempzblock + _ak_zchain_crawl -l 1 $1 | jq > aktempzblock fi curzblock="`cat aktempzblock | jq -r '.[].zblock'`" curaction="`cat aktempzblock | jq -r '.[].action'`" |