Browse Source

Fix a bug in having a non-public constructor

Signed-off-by: Mario Danic <mario@lovelyhq.com>
Mario Danic 6 years ago
parent
commit
6e01253264

+ 1 - 1
app/src/main/java/com/nextcloud/talk/controllers/AccountVerificationController.java

@@ -105,7 +105,7 @@ public class AccountVerificationController extends BaseController {
     private boolean isAccountImport;
     private String originalProtocol;
 
-    AccountVerificationController(Bundle args) {
+    public AccountVerificationController(Bundle args) {
         super(args);
         if (args != null) {
             baseUrl = args.getString(BundleKeys.KEY_BASE_URL);