This commit is contained in:
Thomas 2020-07-09 17:22:19 +02:00
parent 628e62d2ac
commit 9f69c76b6d
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,6 @@ package app.fedilab.fedilabtube;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Build;
import android.os.Bundle;
@ -51,6 +50,7 @@ public class WebviewConnectActivity extends AppCompatActivity {
private String clientId, clientSecret;
private String url;
@SuppressWarnings("deprecation")
public static void clearCookies(Context context) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP_MR1) {
@ -80,7 +80,6 @@ public class WebviewConnectActivity extends AppCompatActivity {
if (url == null)
finish();
String instance = Uri.parse(url).getHost();
clientId = sharedpreferences.getString(Helper.CLIENT_ID, null);
clientSecret = sharedpreferences.getString(Helper.CLIENT_SECRET, null);