mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
fix wrong thumbnail
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
35282cd565
commit
bbca4fd4b7
1 changed files with 1 additions and 1 deletions
|
@ -558,7 +558,7 @@ public class ThumbnailsCacheManager {
|
||||||
pxW + "/" + pxH + Uri.encode(file.getRemotePath(), "/");
|
pxW + "/" + pxH + Uri.encode(file.getRemotePath(), "/");
|
||||||
} else {
|
} else {
|
||||||
uri = mClient.getBaseUri() + "/index.php/apps/files_trashbin/preview?fileId=" +
|
uri = mClient.getBaseUri() + "/index.php/apps/files_trashbin/preview?fileId=" +
|
||||||
file.getLocalId() + "x="+ pxW + "&y=" + pxH;
|
file.getLocalId() + "&x=" + pxW + "&y=" + pxH;
|
||||||
}
|
}
|
||||||
|
|
||||||
Log_OC.d(TAG, "generate thumbnail: " + file.getFileName() + " URI: " + uri);
|
Log_OC.d(TAG, "generate thumbnail: " + file.getFileName() + " URI: " + uri);
|
||||||
|
|
Loading…
Reference in a new issue