Skip to content
Snippets Groups Projects
Commit 646476e4 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Fix video group title not displayed after grouping

parent 17dd1306
No related branches found
No related tags found
1 merge request!791Video groups
Pipeline #37605 passed with stage
in 22 minutes and 2 seconds
......@@ -90,7 +90,6 @@ class AddToGroupDialog : VLCBottomSheetDialogFragment(), SimpleAdapter.ClickHand
}
forbidNewGroup = try {
@Suppress("UNCHECKED_CAST")
requireArguments().getBoolean(FORBID_NEW_GROUP)
} catch (e: Exception) {
true
......
......@@ -197,6 +197,7 @@ class VideosViewModel(context: Context, type: VideoGroupingType, val folder: Fol
val newGroup = medialibrary.createVideoGroup(medias.map { it.id }.toLongArray())
if (newGroup.title.isNullOrBlank()) {
newGroup.rename(medias[0].title)
newGroup.title = medias[0].title
}
newGroup
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment