Build precise queries to find exactly what you need
Press ESC to close
@peepo
Member Since: December 14, 2017
Favorites0
Views
Projects0
Not sure if this is still any use to anyone but I fixed the missing volume disk space bug by removing a $ symbol from line 317. Original Line: storageID[$i]=$(echo "$syno_diskspace" | grep "= "?/${storageName[$i]}$"?" | cut -d "=" -f1 | rev | cut -d "." -f1 | rev) Replaced with: storageID[$i]=$(echo "$syno_diskspace" | grep "= "?/${storageName[$i]}"?" | cut -d "=" -f1 | rev | cut -d "." -f1 | rev) I am not sure if this will break anything else but it seems to be doing what I need it to now.
Reviewed 8 years ago