1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 10:19:33 +02:00
This commit is contained in:
Nikolay Pultsin 2014-12-27 06:24:17 +00:00
parent 1219b197fe
commit 688139a987
2 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ import org.geometerplus.android.util.UIUtil;
import org.geometerplus.android.util.PackageUtil;
public abstract class Util implements UserRegistrationConstants {
static final String AUTHORIZATION_ACTION = "android.fbreader.action.network.AUTHORIZATION";
static final String AUTHORISATION_ACTION = "android.fbreader.action.network.AUTHORISATION";
static final String SIGNIN_ACTION = "android.fbreader.action.network.SIGNIN";
static final String TOPUP_ACTION = "android.fbreader.action.network.TOPUP";
static final String EXTRA_CATALOG_ACTION = "android.fbreader.action.network.EXTRA_CATALOG";
@ -81,7 +81,7 @@ public abstract class Util implements UserRegistrationConstants {
}
static Intent authorisationIntent(INetworkLink link, Uri id) {
final Intent intent = new Intent(AUTHORIZATION_ACTION, id);
final Intent intent = new Intent(AUTHORISATION_ACTION, id);
intent.putExtra(CATALOG_URL, link.getUrl(UrlInfo.Type.Catalog));
intent.putExtra(SIGNIN_URL, link.getUrl(UrlInfo.Type.SignIn));
intent.putExtra(SIGNUP_URL, link.getUrl(UrlInfo.Type.SignUp));