1
0
mirror of https://framagit.org/tom79/fedilab-tube synced 2025-02-16 12:00:42 +01:00
This commit is contained in:
Thomas 2020-07-09 17:22:19 +02:00
parent 628e62d2ac
commit 9f69c76b6d

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);