Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Mäder <t.s.maeder@gmail.com>
  • Loading branch information
tsmaeder committed Jul 11, 2024
1 parent 343d51c commit 19aa421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vsx-registry/src/browser/vsx-extensions-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export class VSXExtensionsModel {
}
}
} catch (error) {
this._searchError = err?.message || String(err);
this._searchError = error?.message || String(error);
}

}, token);
Expand Down

0 comments on commit 19aa421

Please sign in to comment.