Remove unnecessary blank lines

This commit is contained in:
Shidorien
2023-12-21 01:27:57 +01:00
parent b2c1338650
commit 57157b4553
@@ -73,7 +73,6 @@ export class AutoUpdaterService {
this.configurationService.set("have-been-updated", value);
}
private async getChangelog(): Promise<Changelog> {
const path = `https://raw.githubusercontent.com/Zagrios/bs-manager/feature/add-changelog-modal/178/assets/jsons/changelogs/${this.i18nService.currentLanguage.split("-")[0]}.json`
const response = await fetch(path);
@@ -99,7 +98,6 @@ export class AutoUpdaterService {
throw new Error(`No changelog found for this version (${version})`);
}
return changelogVersion;
}