Skip to content

Commit

Permalink
Merge pull request #1249 from wutschel/fix_build
Browse files Browse the repository at this point in the history
Bugfix: Use correct method to start playback
  • Loading branch information
kambala-decapitator authored Feb 23, 2025
2 parents 908d6a6 + c72da83 commit becfc24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XBMC Remote/DetailViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -1603,7 +1603,7 @@ - (void)didSelectItemAtIndexPath:(NSIndexPath*)indexPath item:(NSDictionary*)ite
[self deselectAtIndexPath:indexPath];
}
else if ([parameters[@"forcePlayback"] boolValue]) {
[self addPlayback:item indexPath:indexPath position:indexPath.row shuffle:NO];
[self startPlayback:item indexPath:indexPath shuffle:NO];
}
else if (methods[@"method"] != nil && ![parameters[@"forceActionSheet"] boolValue] && !stackscrollFullscreen) {
// There is a child and we want to show it (only when not in fullscreen)
Expand Down

0 comments on commit becfc24

Please sign in to comment.