This commit is contained in:
maskers 2024-08-05 14:14:22 +03:00
parent 438a49466c
commit f8f6a468ae

View file

@ -230,7 +230,6 @@ async fn outdated_launcher(log: &str, data: &Data) -> Result<Issue> {
"Outdated Prism Launcher".to_string(),
format!("Your installed version is {log_version}, while the newest version is {latest_version}.\nPlease update; for more info see https://prismlauncher.org/download/")
)
} else {
(
"Outdated Prism Launcher".to_string(),
@ -238,7 +237,7 @@ async fn outdated_launcher(log: &str, data: &Data) -> Result<Issue> {
)
};
Ok(Some(issue))
Ok(Some(issue))
} else {
Ok(None)
}