mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Use user agent of DownloaderImpl also in ReCapthaActivity
Does not contain device info and should also fix some issues about recaptchas not showing up
This commit is contained in:
		| @@ -83,6 +83,7 @@ public class ReCaptchaActivity extends AppCompatActivity { | ||||
|         // enable Javascript | ||||
|         final WebSettings webSettings = webView.getSettings(); | ||||
|         webSettings.setJavaScriptEnabled(true); | ||||
|         webSettings.setUserAgentString(DownloaderImpl.USER_AGENT); | ||||
|  | ||||
|         webView.setWebViewClient(new WebViewClient() { | ||||
|             @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) | ||||
| @@ -120,8 +121,7 @@ public class ReCaptchaActivity extends AppCompatActivity { | ||||
|         webView.clearHistory(); | ||||
|         final android.webkit.CookieManager cookieManager = CookieManager.getInstance(); | ||||
|         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { | ||||
|             cookieManager.removeAllCookies(aBoolean -> { | ||||
|             }); | ||||
|             cookieManager.removeAllCookies(value -> { }); | ||||
|         } else { | ||||
|             cookieManager.removeAllCookie(); | ||||
|         } | ||||
| @@ -150,14 +150,11 @@ public class ReCaptchaActivity extends AppCompatActivity { | ||||
|  | ||||
|     @Override | ||||
|     public boolean onOptionsItemSelected(final MenuItem item) { | ||||
|         final int id = item.getItemId(); | ||||
|         switch (id) { | ||||
|             case R.id.menu_item_done: | ||||
|                 saveCookiesAndFinish(); | ||||
|                 return true; | ||||
|             default: | ||||
|                 return false; | ||||
|         if (item.getItemId() == R.id.menu_item_done) { | ||||
|             saveCookiesAndFinish(); | ||||
|             return true; | ||||
|         } | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     private void saveCookiesAndFinish() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox