We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d08e3e6 commit c1a4ff2Copy full SHA for c1a4ff2
src/index.tsx
@@ -135,7 +135,7 @@ async function activatePlugin(
135
// Try calling an API to verify that the server extension is actually installed
136
let serverExtensionOk = false;
137
try{
138
- await api.getJobs({ max_items: 0 })
+ await api.getJobs({ max_items: 0 })
139
serverExtensionOk = true;
140
} catch (responseError: unknown) {
141
const responseCode = (responseError as ServerConnection.ResponseError).response.status;
@@ -152,7 +152,7 @@ async function activatePlugin(
152
153
}
154
155
-
+
156
if (!serverExtensionOk) {
157
return; // Don't activate the rest of the plugin
158
0 commit comments