a couple more max_value -> MAX

This commit is contained in:
realbigsean
2024-06-13 17:54:49 -04:00
parent ad9d681d0a
commit 807fe7cae9

View File

@@ -64,7 +64,7 @@ pub struct BlockprintResponse {
}
impl WatchBlockprintClient {
async fn get(&self, url: Url) -> Result<Response, Error> {
pub async fn get(&self, url: Url) -> Result<Response, Error> {
let mut builder = self.client.get(url).timeout(TIMEOUT);
if let Some(username) = &self.username {
builder = builder.basic_auth(username, self.password.as_ref());