Skip to content

Commit

Permalink
whoops, i forgot to fix this
Browse files Browse the repository at this point in the history
When you don't submit a URL to the API, it doesn't give you an API back.
I didn't realize we actually specify the response values, but now it
makes sense.
  • Loading branch information
Cass Fridkin authored and adamchalmers committed Apr 27, 2021
1 parent dbd4f26 commit b9d0e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudflare/src/endpoints/workers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ impl ApiResult for Vec<WorkersSecret> {} // to parse arrays too
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Eq)]
pub struct WorkersTail {
pub id: String,
pub url: String,
pub url: Option<String>,
pub expires_at: DateTime<Utc>,
}

Expand Down

0 comments on commit b9d0e0f

Please sign in to comment.