|
|
@@ -16,6 +16,7 @@
|
|
|
#import <SystemConfiguration/SystemConfiguration.h>
|
|
|
#import "CustomJitsiLogger.h"
|
|
|
#import "FirendStore.h"
|
|
|
+#import "CryptoAES.h"
|
|
|
|
|
|
@interface JSGController()<WebRTCStoreDelegate,AVAudioPlayerDelegate>
|
|
|
@property (nonatomic,strong) JitsiMeetView *jitsiView;
|
|
|
@@ -406,7 +407,9 @@
|
|
|
duration=[NSString stringWithFormat:@"%ld",(long)_startTime];
|
|
|
}
|
|
|
BOOL conetType=true;
|
|
|
+ NSString *content = [CryptoAES.shareInstance encryptStringL:@"[视频通话]"];
|
|
|
if (self.audioOnly) {
|
|
|
+ content = [CryptoAES.shareInstance encryptStringL:@"[语音通话]"];
|
|
|
conetType=false;
|
|
|
}
|
|
|
NSDictionary *callMsg = @{
|
|
|
@@ -424,7 +427,8 @@
|
|
|
@"result":result,
|
|
|
@"timestamp":strtime,
|
|
|
@"video":[NSNumber numberWithBool:conetType],
|
|
|
- @"duration":duration
|
|
|
+ @"duration":duration,
|
|
|
+ @"content":content
|
|
|
}
|
|
|
};
|
|
|
NSError *error;
|