This commit is contained in:
tom79 2019-11-29 15:35:44 +01:00
parent 1b4b68ea67
commit 4f5705a182
2 changed files with 2 additions and 1 deletions

View File

@ -734,7 +734,7 @@ public class Status implements Parcelable {
public void run() {
AlertDialog.Builder builder = new AlertDialog.Builder(context, style);
if( response != null ) {
builder.setMessage(response);
builder.setMessage(context.getString(R.string.redirect_detected,url,response));
}else{
builder.setMessage(R.string.no_redirect);
}

View File

@ -1196,4 +1196,5 @@
<string name="open_other_app">Open with another app</string>
<string name="check_redirect">Check redirect</string>
<string name="no_redirect">This URL does not redirect</string>
<string name="redirect_detected">%1$s \n\nredirects to\n\n %2$s</string>
</resources>