fix: remove codeblock from log export

Fixes: #1416
This commit is contained in:
Ushie 2023-10-25 11:40:30 +03:00
parent e68689828e
commit d60ced2f61
No known key found for this signature in database
GPG key ID: B3AAD18842E34632

View file

@ -183,7 +183,6 @@ class InstallerViewModel extends BaseViewModel {
final info = await AboutInfo.getInfo();
final formattedLogs = [
'```',
'- Device Info',
'ReVanced Manager: ${info['version']}',
'Build: ${info['flavor']}',
@ -206,7 +205,6 @@ class InstallerViewModel extends BaseViewModel {
'\n- Logs',
logs,
'```',
];
Clipboard.setData(ClipboardData(text: formattedLogs.join('\n')));