Skip to content

Commit

Permalink
πŸ› Quick fix with updating from dev versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKai77 committed Jun 26, 2024
1 parent 7d08e89 commit 0140786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Loop/Updater/Updater.swift
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class Updater: ObservableObject {
}

private func processRelease(_ release: Release) async throws {
let currentVersion = Bundle.main.appVersion ?? "0.0.0"
let currentVersion = Bundle.main.appVersion?.filter(\.isASCII).trimmingCharacters(in: .whitespaces) ?? "0.0.0"

await MainActor.run {
var release = release
Expand Down

0 comments on commit 0140786

Please sign in to comment.