Explorar el Código

Fix how the folder name is displayed

Vishnu Mohandas hace 5 años
padre
commit
eef26ffebd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/models/folder.dart

+ 1 - 1
lib/models/folder.dart

@@ -26,7 +26,7 @@ class Folder {
 
     return Folder(
       map['id'],
-      map['name'],
+      map['owner'] + "'s " + map['deviceFolder'],
       map['owner'],
       map['deviceFolder'],
       Set<String>.from(map['sharedWith']),