Skip to content

Commit

Permalink
Merge pull request #35 from noppefoxwolf/swift-5.9
Browse files Browse the repository at this point in the history
Update swift version
  • Loading branch information
noppefoxwolf authored Oct 3, 2023
2 parents f150f76 + b3363a4 commit 43c3dff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.6
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ class EnvelopePreviewTableViewController: UITableViewController {

private func fetch() {
Task { [weak self] in
let envelops = await fetcher()
let envelops = await self?.fetcher()
guard let envelops else { return }
self?.envelops = envelops
self?.tableView.refreshControl?.endRefreshing()
self?.tableView.reloadData()
Expand Down

0 comments on commit 43c3dff

Please sign in to comment.