Dropped obsolete condition
The conditional a few lines above already checks for `bytesMax > 0`pull/4143/head
parent
89540c5690
commit
a4ad3c2146
|
@ -326,11 +326,7 @@ class RemoteFilesystem
|
||||||
|
|
||||||
case STREAM_NOTIFY_PROGRESS:
|
case STREAM_NOTIFY_PROGRESS:
|
||||||
if ($this->bytesMax > 0 && $this->progress) {
|
if ($this->bytesMax > 0 && $this->progress) {
|
||||||
$progression = 0;
|
$progression = round($bytesTransferred / $this->bytesMax * 100);
|
||||||
|
|
||||||
if ($this->bytesMax > 0) {
|
|
||||||
$progression = round($bytesTransferred / $this->bytesMax * 100);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((0 === $progression % 5) && 100 !== $progression && $progression !== $this->lastProgress) {
|
if ((0 === $progression % 5) && 100 !== $progression && $progression !== $this->lastProgress) {
|
||||||
$this->lastProgress = $progression;
|
$this->lastProgress = $progression;
|
||||||
|
|
Loading…
Reference in New Issue