Skip to content

Commit

Permalink
fix(core): foramt code
Browse files Browse the repository at this point in the history
  • Loading branch information
xiyionxiong committed Aug 29, 2024
1 parent 8806b71 commit aae8125
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ class ScreenCapturerLinux extends MethodChannelScreenCapturer {
bool get isDeepinDesktop {
if (_isDeepinDesktop == null) {
try {
final result = ShellExecutor.global.execSync('deepin-screen-recorder', ['-v']);
final result =
ShellExecutor.global.execSync('deepin-screen-recorder', ['-v']);
_isDeepinDesktop = result.exitCode == 0;
} catch (_) {
_isDeepinDesktop = false;
Expand Down

0 comments on commit aae8125

Please sign in to comment.