Skip to content

Commit

Permalink
Redo indentation to improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
wutschel committed May 11, 2024
1 parent dcb0d95 commit bf10acc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions XBMC Remote/DetailViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -4712,12 +4712,12 @@ - (void)retrieveData:(NSString*)methodToCall parameters:(NSDictionary*)parameter

// Check if we need to ignore the current item
BOOL isRadioItem = [item[@"radio"] boolValue] ||
[item[@"isradio"] boolValue];
[item[@"isradio"] boolValue];
BOOL isTimerRule = [item[@"istimerrule"] boolValue];
BOOL ignorePvrItem = (ignoreRadioItems && isRadioItem) ||
(ignoreTvItems && !isRadioItem) ||
(ignoreTimerRulesItems && isTimerRule) ||
(ignoreTimerItems && !isTimerRule);
(ignoreTvItems && !isRadioItem) ||
(ignoreTimerRulesItems && isTimerRule) ||
(ignoreTimerItems && !isTimerRule);

// Postprocessing of movie sets lists to ignore 1-movie-sets
if (ignoreSingleMovieSets) {
Expand Down

0 comments on commit bf10acc

Please sign in to comment.