Volume free space is not working.

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.