Procházet zdrojové kódy

wip

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky před 2 roky
rodič
revize
31560bf1e8

+ 1 - 1
app/src/main/java/com/owncloud/android/utils/FileStorageUtils.java

@@ -244,7 +244,7 @@ public final class FileStorageUtils {
         file.setLockTimestamp(remote.getLockTimestamp());
         file.setLockTimeout(remote.getLockTimeout());
         file.setLockToken(remote.getLockToken());
-        file.setTags(new ArrayList<String>(Arrays.asList(remote.getTags())));
+        file.setTags(new ArrayList<>(Arrays.asList(remote.getTags())));
 
         return file;
     }

+ 1 - 1
app/src/main/res/layout/list_item.xml

@@ -140,7 +140,7 @@
 
             <LinearLayout
                 android:id="@+id/file_detail_group"
-                android:layout_width="wrap_content"
+                android:layout_width="match_parent"
                 android:layout_height="match_parent"
                 android:orientation="horizontal">