This commit is contained in:
NudeDude 2018-08-13 19:16:46 +02:00
parent 76e19a51f6
commit 16319d8960
6 changed files with 27 additions and 3 deletions

View File

@ -188,8 +188,7 @@ public class ProfileLoader extends AsyncTask<Long,Void,Long> {
}
} catch (TwitterException err) {
returnCode = err.getErrorCode();
if (returnCode != 136) {
if (returnCode != 136 && returnCode != -1) {
errMsg += err.getMessage();
errorLog.add(errMsg);
}

View File

@ -83,7 +83,7 @@ public class TwitterSearch extends AsyncTask<String, Void, Boolean> {
} catch (TwitterException err) {
returnCode = err.getErrorCode();
if (returnCode != 420) {
if (returnCode != 420 && returnCode != -1) {
errorMessage += err.getMessage();
errorLog.add(errorMessage);
}

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="location">
<item>Weltweit</item>
<item>Deutschland</item>
<item>Frankreich</item>
<item>USA</item>
<item>Mexiko</item>
<item>Algerien</item>
<!--Last Element should stay here-->
<item>Benutzerdefiniert</item>
</string-array>
<integer-array name="woeId">
<item>1</item>
<item>23424829</item>
<item>23424819</item>
<item>23424977</item>
<item>23424900</item>
<item>23424740</item>
<item>0</item>
</integer-array>
</resources>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 31 KiB