mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-26 20:33:53 +01:00
make SignupActivity to terminate on task completion
This commit is contained in:
parent
401de30630
commit
68462eac2b
1 changed files with 2 additions and 4 deletions
|
|
@ -1,6 +1,5 @@
|
||||||
package fr.free.nrw.commons.auth;
|
package fr.free.nrw.commons.auth;
|
||||||
|
|
||||||
import android.content.Intent;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.webkit.WebSettings;
|
import android.webkit.WebSettings;
|
||||||
import android.webkit.WebView;
|
import android.webkit.WebView;
|
||||||
|
|
@ -44,9 +43,8 @@ public class SignupActivity extends BaseActivity {
|
||||||
Toast.LENGTH_LONG
|
Toast.LENGTH_LONG
|
||||||
);
|
);
|
||||||
toast.show();
|
toast.show();
|
||||||
|
// terminate on task completion.
|
||||||
Intent intent = new Intent(CommonsApplication.getInstance(), LoginActivity.class);
|
finish();
|
||||||
startActivity(intent);
|
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
//If user clicks any other links in the webview
|
//If user clicks any other links in the webview
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue