git » nextcloud-client.git » commit cf258d5

upgpkg: 2:3.9.0-2; drop patch disabling bulk uploads, rumored to be fixed in 3.9.0

author Caleb Maclennan
2023-07-04 19:05:41 UTC
committer Caleb Maclennan
2023-07-04 19:05:41 UTC
parent e48704dea8effccceab4b36d728d9bea7437070d

upgpkg: 2:3.9.0-2; drop patch disabling bulk uploads, rumored to be fixed in 3.9.0

PKGBUILD +1 -7

diff --git a/PKGBUILD b/PKGBUILD
index 725046a..2889699 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,7 +13,7 @@ epoch=2
 # https://github.com/nextcloud/desktop/issues/1510
 pkgver=3.9.0
 _tag=33eba712958dd1fcdb89f6d9ab5030853ef0a2a4
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://nextcloud.com/'
 _url=https://github.com/nextcloud/desktop
@@ -59,12 +59,6 @@ prepare() {
   # tmpdir for check()
   mkdir -p tmpdir
   cd $pkgbase
-  # Monkey patch that disables bulk upload capability which causes infinite
-  # loops for many server/client combos. Feature is also disabled by default on
-  # server end in v23.0.3 because it was so problematic. This can abe re-enabled
-  # when underlying bug squashed:
-  # https://github.com/nextcloud/desktop/issues/4241
-  sed -i -e '/bulkupload/s/return _.*;$/return false;/' src/libsync/capabilities.cpp
   # Disable tests that touch on disabled feature
   sed -i -e '/SyncEngine/s/^/#/' -e '/Capabilities/s/^/#/' -e '/SecureFileDrop/s/^/#/' test/CMakeLists.txt
 }