aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/github
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-03-26 20:25:20 +0200
committerGitHub <noreply@github.com>2023-03-26 20:25:20 +0200
commitcec86b682d68016e2142b27e7674d77807c3330c (patch)
tree26e8fcc9c8fe305aa8301fdca819644300b1c4ee /src-tauri/src/github
parent28da58763c7d69c9837da79748e175b04b2bf557 (diff)
downloadFlightCore-cec86b682d68016e2142b27e7674d77807c3330c.tar.gz
FlightCore-cec86b682d68016e2142b27e7674d77807c3330c.zip
fix: Remove redundant string conversions (#242)
As pointed out by clippy
Diffstat (limited to 'src-tauri/src/github')
-rw-r--r--src-tauri/src/github/pull_requests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/github/pull_requests.rs b/src-tauri/src/github/pull_requests.rs
index 45a11c1c..8fc769f0 100644
--- a/src-tauri/src/github/pull_requests.rs
+++ b/src-tauri/src/github/pull_requests.rs
@@ -68,7 +68,7 @@ pub enum PullRequestType {
pub async fn get_pull_requests(url: String) -> Result<Vec<PullsApiResponseElement>, String> {
let json_response = match fetch_github_releases_api(&url).await {
Ok(result) => result,
- Err(err) => return Err(err.to_string()),
+ Err(err) => return Err(err),
};
let pulls_response: Vec<PullsApiResponseElement> = match serde_json::from_str(&json_response) {