diff --git a/src/index.rs b/src/index.rs index a290125..11651ce 100644 --- a/src/index.rs +++ b/src/index.rs @@ -53,7 +53,7 @@ pub struct ForecastFileContext { impl From for ForecastFileContext { fn from(value: ForecastFile) -> Self { - let path = format!("/forecast/{}", urlencoding::encode(&value.file.name)); + let path = format!("/forecasts/{}", urlencoding::encode(&value.file.name)); Self { path } } }