Skip to content

Commit 9b8e156

Browse files
committed
Handle new errors
1 parent 9bbce05 commit 9b8e156

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/misc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,17 @@ export function getErrorReportUrl(title, description) {
7070
const errorToUrls = [
7171
['Multiple requests to rebuild the project', 'https://bit.ly/3mMTOgB'],
7272
['WindowsError: [Error 5]', 'https://bit.ly/3GTAtlG'],
73+
['[WinError 5]', 'https://bit.ly/3GTAtlG'],
74+
['[WinError 225]', 'https://bit.ly/3GTAtlG'],
7375
['Could not start PIO Home server: Error: timeout', 'https://bit.ly/2Yfl65C'],
74-
['Could not find distutils module', 'https://bit.ly/3bK6zlH'],
76+
['`venv` module', 'https://bit.ly/3bK6zlH'],
7577
['after connection broken by', 'https://bit.ly/3q6StTV'],
7678
['subprocess.CalledProcessError', 'https://bit.ly/3EFlxWq'],
7779
['Can not find Python Interpreter', 'https://bit.ly/3wkz0Qv'],
7880
['platformio-ide.useBuiltinPIOCore', 'https://bit.ly/3AhJHHe'],
7981
['Could not start PIO Home server: Timeout error', 'https://bit.ly/3m2Tbl9'],
82+
['Could not create PIO Core Virtual Environment', 'https://bit.ly/43hNh04'],
83+
['Compatible PlatformIO Core not found', 'https://bit.ly/43tNj4C'],
8084
];
8185
for (const item of errorToUrls) {
8286
if (description.includes(item[0])) {

0 commit comments

Comments
 (0)