Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliskov committed Jan 29, 2025
1 parent b877e37 commit 106d2cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,10 @@ private MotherActivity getMotherActivity() {
}

private void pinGroups(@NonNull List<ItemGroup> newGroups) {
if (newGroups.isEmpty()) {
return;
}

for (ItemGroup group : newGroups) {
BrowsePresenter.instance(mContext).pinItem(Video.from(group));
}
Expand Down

0 comments on commit 106d2cd

Please sign in to comment.