mirror of
https://github.com/nuclearfog/Shitter.git
synced 2025-01-01 12:27:25 +01:00
bugfix
This commit is contained in:
parent
76e19a51f6
commit
16319d8960
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
25
app/src/main/res/values-de-rDE/array.xml
Normal file
25
app/src/main/res/values-de-rDE/array.xml
Normal 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>
|
BIN
shitter_1.jpg
BIN
shitter_1.jpg
Binary file not shown.
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 18 KiB |
BIN
shitter_2.jpg
BIN
shitter_2.jpg
Binary file not shown.
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 13 KiB |
BIN
shitter_3.jpg
BIN
shitter_3.jpg
Binary file not shown.
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 31 KiB |
Loading…
Reference in New Issue
Block a user