1
0
mirror of https://github.com/owncloud/android-library.git synced 2026-08-11 16:33:03 +00:00

Remove unneeded slahes in url

This commit is contained in:
davigonz
2018-05-22 12:16:20 +02:00
parent ca2eff6647
commit a4678557d8
3 changed files with 11 additions and 32 deletions
@@ -158,8 +158,8 @@ public class MainActivity extends Activity implements OnRemoteOperationListener,
private void startRefresh() {
final PropfindOperation propfindOperation = new PropfindOperation(mOCContext, FileUtils.PATH_SEPARATOR);
new Thread(() -> propfindOperation.exec()).start();
Thread tread = new Thread(() -> propfindOperation.exec());
// ReadRemoteFolderOperation refreshOperation = new ReadRemoteFolderOperation(FileUtils.PATH_SEPARATOR);
// refreshOperation.execute(mClient, this, mHandler);
}