Skip to content

Commit

Permalink
fix: isDownloaded ios
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Sep 15, 2022
1 parent 63940c9 commit 8fa850d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Plugin/BundleInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import Foundation
}

public func isDownloaded() -> Bool {
return !self.isBuiltin() && self.downloaded != "" && self.downloaded == BundleInfo.DOWNLOADED_BUILTIN
return !self.isBuiltin() && self.downloaded != "" && self.downloaded != BundleInfo.DOWNLOADED_BUILTIN
}

public func getDownloaded() -> String {
Expand Down

0 comments on commit 8fa850d

Please sign in to comment.