From caafba70f035a7301e2b141d173221cf9a46491e Mon Sep 17 00:00:00 2001 From: lowrt Date: Thu, 4 Dec 2025 19:53:14 +0800 Subject: [PATCH] fix(model/report): traceBaseUrl --- lib/api/model/report/earthquake_report.dart | 2 +- lib/api/model/report/partial_earthquake_report.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/api/model/report/earthquake_report.dart b/lib/api/model/report/earthquake_report.dart index 711b5214e..e96c3097b 100644 --- a/lib/api/model/report/earthquake_report.dart +++ b/lib/api/model/report/earthquake_report.dart @@ -112,7 +112,7 @@ class EarthquakeReport { String get traceBaseUrl { final year = time.year.toString(); - return 'https://scweb.cwa.gov.tw/webdata/drawTrace/plotContour/$year/'; + return 'https://scweb.cwa.gov.tw/webdata/drawTrace/plotContour/$year'; } String? get intensityMapImageName { diff --git a/lib/api/model/report/partial_earthquake_report.dart b/lib/api/model/report/partial_earthquake_report.dart index 343e82884..a841a17fe 100644 --- a/lib/api/model/report/partial_earthquake_report.dart +++ b/lib/api/model/report/partial_earthquake_report.dart @@ -113,7 +113,7 @@ class PartialEarthquakeReport { String get traceBaseUrl { final year = time.year.toString(); - return 'https://scweb.cwa.gov.tw/webdata/drawTrace/plotContour/$year/'; + return 'https://scweb.cwa.gov.tw/webdata/drawTrace/plotContour/$year'; } String? get intensityMapImageName {