alright
Some checks are pending
Build and Release / Build IPA (push) Waiting to run
Build and Release / Build Mac Catalyst (push) Waiting to run

This commit is contained in:
cranci1 2025-06-12 10:12:38 +02:00
parent af8b1c1773
commit b66ddb1679
3 changed files with 22 additions and 24 deletions

View file

@ -59,8 +59,6 @@ fileprivate struct SettingsSection<Content: View>: View {
}
struct SettingsViewAbout: View {
let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "ALPHA"
var body: some View {
ScrollView {
VStack(spacing: 24) {
@ -182,7 +180,7 @@ struct ContributorsView: View {
private func loadContributors() {
let url = URL(string: "https://api.github.com/repos/cranci1/Sora/contributors")!
URLSession.shared.dataTask(with: url) { data, response, error in
URLSession.custom.dataTask(with: url) { data, response, error in
DispatchQueue.main.async {
isLoading = false