1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-08 00:16:09 +00:00

Merge pull request #74 from owncloud/auto_grid_only_with_all_pictures

Added check of support of remote thumbnails to OwnCloudVersion
This commit is contained in:
masensio 2015-06-25 12:52:28 +02:00
commit f5fbca24be
2 changed files with 6 additions and 3 deletions

View File

@ -444,9 +444,8 @@ public class OwnCloudClient extends HttpClient {
}
public void setOwnCloudVersion(String version){
OwnCloudVersion ver = new OwnCloudVersion(version);
mVersion = ver;
public void setOwnCloudVersion(OwnCloudVersion version){
mVersion = version;
}
public OwnCloudVersion getOwnCloudVersion(){

View File

@ -41,6 +41,8 @@ public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
public static final int MINIMUM_VERSION_WITH_FORBIDDEN_CHARS = 0x08010000; // 8.1
public static final int MINIMUM_SERVER_VERSION_FOR_REMOTE_THUMBNAILS = 0x07080000; // 7.8.0
private static final int MAX_DOTS = 3;
// format is in version
@ -127,5 +129,7 @@ public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
return (mVersion >= MINIMUM_VERSION_WITH_FORBIDDEN_CHARS);
}
public boolean supportsRemoteThumbnails() { return (mVersion >= MINIMUM_SERVER_VERSION_FOR_REMOTE_THUMBNAILS); }
}