// refresh button enabled\r
outState.putBoolean(KEY_REFRESH_BUTTON_ENABLED, (mRefreshButton.getVisibility() == View.VISIBLE));\r
\r
-\r
}\r
\r
\r
}\r
}\r
\r
-\r
/**\r
* The redirection triggered by the OAuth authentication server as response to the GET AUTHORIZATION, and \r
* deferred in {@link #onNewIntent(Intent)}, is processed here.\r
private void detectAuthorizationMethod() {\r
\r
Log_OC.d(TAG, "Trying empty authorization to detect authentication method");\r
-\r
+ \r
+ String webdav_path = AccountUtils.getWebdavPath(mDiscoveredVersion, mAuthTokenType);\r
+ \r
/// test credentials \r
- Intent service = new Intent(this, OperationsService.class);\r
+ Intent service = new Intent(this, OperationsService.class); \r
service.setAction(OperationsService.ACTION_DETECT_AUTHENTICATION_METHOD);\r
service.putExtra(OperationsService.EXTRA_SERVER_URL, mHostBaseUrl);\r
+ service.putExtra(OperationsService.EXTRA_WEBDAV_PATH, webdav_path);\r
startService(service);\r
}\r
\r