mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
15 lines
435 B
Objective-C
15 lines
435 B
Objective-C
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "AVAudioSession+OWS.h"
|
|
|
|
@implementation AVAudioSession(OWS)
|
|
|
|
|
|
- (BOOL)ows_setCategory:(AVAudioSessionCategory)category withOptions:(AVAudioSessionCategoryOptions)options error:(NSError **)outError API_AVAILABLE(ios(6.0), watchos(2.0), tvos(9.0)) API_UNAVAILABLE(macos)
|
|
{
|
|
return [self setCategory:category withOptions:options error:outError];
|
|
}
|
|
|
|
@end
|