From: tobiasKaminsky Date: Thu, 5 Nov 2015 21:58:19 +0000 (+0100) Subject: update version url X-Git-Tag: beta-20151122~37 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/ea1d7f17bdf2bddab875799eb0305cde1f6d3cb5 update version url --- diff --git a/src/com/owncloud/android/ui/activity/Preferences.java b/src/com/owncloud/android/ui/activity/Preferences.java index 46b62b36..0a224141 100644 --- a/src/com/owncloud/android/ui/activity/Preferences.java +++ b/src/com/owncloud/android/ui/activity/Preferences.java @@ -972,7 +972,7 @@ public class Preferences extends PreferenceActivity private class LoadingVersionNumberTask extends AsyncTask { protected Integer doInBackground(Void... args) { try { - URL url = new URL("https://github.com/owncloud/android/blob/beta/apks/latest"); + URL url = new URL("https://github.com/owncloud/android/raw/beta/apks/latest"); BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream())); Integer latestVersion = Integer.parseInt(in.readLine());