Skip to content

Commit

Permalink
修复多余引用 (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
phidiaLam authored Aug 1, 2024
1 parent 137ff71 commit b6f786e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl<T: TaskRequestTrait> HeaderFetch<T> for TcAction {
fn fetch_header(
&self, _: &T, _: &Url,
) -> Result<HeaderValue, InvalidHeaderValue> {
HeaderValue::from_str(&T::ACTION)
HeaderValue::from_str(T::ACTION)
}
}

Expand Down

0 comments on commit b6f786e

Please sign in to comment.