mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-27 08:55:54 +03:00
Fix a bug in having a non-public constructor
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
1215c9af2c
commit
6e01253264
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue