You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to skicka-users
In skicka.go a function fmtbytes is defined that formats size quantities via scaling. In the fixed format length section of the function a format string of %6.2f is used as a format for the scaled quantity. The problem is the scaling function can produce floating point numbers in excess of 999.99. As a result for quantities that scale above 999.99 are printed out with 7 digits instead of 6. (For example formatting a 1001 * 1024 * 1024 byte size quantity) This throws of the fixed column formatting since the rest of the formatted sizes will print out with 6 digits.