mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
change long couldn't be determined string to question mark again
This commit is contained in:
parent
ded02e771e
commit
5a77b67147
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ class OC_Helper {
|
|||
public static function humanFileSize( $bytes ) {
|
||||
if( $bytes < 0 ) {
|
||||
$l = OC_L10N::get('lib');
|
||||
return $l->t("couldn't be determined");
|
||||
return "?";
|
||||
}
|
||||
if( $bytes < 1024 ) {
|
||||
return "$bytes B";
|
||||
|
|
|
|||
Loading…
Reference in a new issue