Skip to content

Commit

Permalink
fix: setLogFileSize throw
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Jun 9, 2023
1 parent beab8cd commit 4570c3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/agora_rtm_client.dart
Expand Up @@ -322,7 +322,8 @@ class AgoraRtmClient {
}

Future<void> setLogFileSize(int fileSizeInKBytes) {
return _callNative("setLog", {'fileSizeInKBytes': fileSizeInKBytes});
return _callNative(
"setLogFileSize", {'fileSizeInKBytes': fileSizeInKBytes});
}

/// get the agora native sdk version
Expand Down

0 comments on commit 4570c3d

Please sign in to comment.