diff options
Diffstat (limited to 'src/abconfig.rs')
-rw-r--r-- | src/abconfig.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/abconfig.rs b/src/abconfig.rs index f1622c7..6f9adbe 100644 --- a/src/abconfig.rs +++ b/src/abconfig.rs @@ -15,7 +15,7 @@ // along with this program. If not, see <https://www.gnu.org/licenses/>. use crate::{ - client::{self, Client}, + client::Client, error::Error, }; @@ -29,6 +29,6 @@ impl<'a> ABConfigFetcher<'a> { } pub fn fetch(&self) -> Result<String, Error> { - self.client.fetch_stream(client::ZOTAPI_ABCONFIG_PATH, &()) + self.client.fetch_stream("abconfig", &()) } } |