Change em dash to dash in Stations class

This commit is contained in:
Christer Warén 2023-06-05 00:15:06 +03:00
parent c584e3632e
commit 5be3b29300

View File

@ -13,7 +13,7 @@ export default class Stations extends Array {
async fetch(options: any){
try {
this.logger('Stations', 'Started fetching list ' + options.url);
this.logger('Stations', 'Started fetching list - ' + options.url);
let list = await fetch(options.url)
.then(this.checkFetchStatus)
.then((response: { json: () => any; }) => response.json());