Fix crash when server responds with garbage to language query (fixes #51)
This commit is contained in:
@@ -82,7 +82,7 @@ public class LocalizationExtra implements Extra {
|
|||||||
availableLanguages.put(langcode, prop);
|
availableLanguages.put(langcode, prop);
|
||||||
return true;
|
return true;
|
||||||
} catch (ApiException e) {
|
} catch (ApiException e) {
|
||||||
if (e.getError().getId() != 16) { // This language has not been translated
|
if (e.getError() == null || e.getError().getId() != 16) { // This language has not been translated
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
} catch(ConnectException ce) {
|
} catch(ConnectException ce) {
|
||||||
|
|||||||
Reference in New Issue
Block a user