Fix pop up when issue doesn't exist

Signed-off-by: Minecon724 <minecon724@noreply.git.m724.eu>
This commit is contained in:
Minecon724 2025-03-17 13:20:51 +01:00
parent 9188b55ee2
commit 95dd999db7
Signed by: Minecon724
GPG key ID: A02E6E67AB961189

View file

@ -95,12 +95,12 @@ export default {
try {
const response = await GET(`${appSubUrl}/${data.owner}/${data.repo}/issues/${data.index}/info`);
const respJson = await response.json();
const respText = await response.text();
if (!response.ok) {
this.i18nErrorMessage = respJson.message ?? i18n.network_error;
this.i18nErrorMessage = respText ?? i18n.error_occurred;
return;
}
this.issue = respJson;
this.issue = JSON.parse(respText);
} catch {
this.i18nErrorMessage = i18n.network_error;
} finally {