-
Notifications
You must be signed in to change notification settings - Fork 815
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bugfix/slow bulk upload #8048
base: master
Are you sure you want to change the base?
Bugfix/slow bulk upload #8048
Conversation
if (oneDevice._device->isOpen()) { | ||
if (!oneDevice._device->errorString().isEmpty()) { | ||
qCWarning(lcPutMultiFileJob) << "oneDevice has error:" << oneDevice._device->errorString(); | ||
} | ||
} | ||
|
||
if (oneDevice._device->isOpen()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't we condense this?
if (oneDevice._device->isOpen()) { | |
if (!oneDevice._device->errorString().isEmpty()) { | |
qCWarning(lcPutMultiFileJob) << "oneDevice has error:" << oneDevice._device->errorString(); | |
} | |
} | |
if (oneDevice._device->isOpen()) { | |
if (oneDevice._device->isOpen()) { | |
if (!oneDevice._device->errorString().isEmpty()) { | |
qCWarning(lcPutMultiFileJob) << "oneDevice has error:" << oneDevice._device->errorString(); | |
} |
Signed-off-by: Matthieu Gallien <[email protected]>
should help make it faster to send all data Signed-off-by: Matthieu Gallien <[email protected]>
Signed-off-by: Matthieu Gallien <[email protected]>
Signed-off-by: Matthieu Gallien <[email protected]>
Signed-off-by: Matthieu Gallien <[email protected]>
197bbc5
to
6316d84
Compare
Artifact containing the AppImage: nextcloud-appimage-pr-8048.zip SHA256 checksum: To test this change/fix you can download the above artifact file, unzip it, and run it. Please make sure to quit your existing Nextcloud app and backup your data. |
|
No description provided.