Преглед на файлове

Fix compilation error for GalleryFastScrollViewHelper

Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
Álvaro Brey преди 2 години
родител
ревизия
1e0d48f945
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      app/src/main/java/com/owncloud/android/ui/fragment/util/GalleryFastScrollViewHelper.kt

+ 1 - 1
app/src/main/java/com/owncloud/android/ui/fragment/util/GalleryFastScrollViewHelper.kt

@@ -238,7 +238,7 @@ class GalleryFastScrollViewHelper(
         return if (position == RecyclerView.NO_POSITION) {
             null
         } else {
-            popupTextProvider.getPopupText(position)
+            popupTextProvider.getPopupText(position).toString()
         }
     }