Skip to content

Commit

Permalink
Merge branch 'kainosk-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed Nov 16, 2023
2 parents 9356912 + 9b05022 commit 22a5ca6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/darwin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ class AVAudioSessionCategoryOptions {
AVAudioSessionCategoryOptions option) =>
AVAudioSessionCategoryOptions(value & option.value);

bool contains(AVAudioSessionInterruptionOptions options) =>
bool contains(AVAudioSessionCategoryOptions options) =>
options.value & value == options.value;

@override
Expand Down Expand Up @@ -426,7 +426,7 @@ class AVAudioSessionSetActiveOptions {
AVAudioSessionSetActiveOptions option) =>
AVAudioSessionSetActiveOptions(value & option.value);

bool contains(AVAudioSessionInterruptionOptions options) =>
bool contains(AVAudioSessionSetActiveOptions options) =>
options.value & value == options.value;

@override
Expand Down

0 comments on commit 22a5ca6

Please sign in to comment.