Skip to content

Commit

Permalink
Fix Xcode 14 build
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Nov 25, 2023
1 parent a45f4a0 commit 31625fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/MarkersExtractor/MarkersExtractor Export.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extension MarkersExtractor {
) async throws -> ExportResult {
switch s.exportFormat {
case .airtable:
try await export(
return try await export(
for: AirtableExportProfile.self,
media: media,
markers: markers,
Expand All @@ -27,7 +27,7 @@ extension MarkersExtractor {
parentProgress: parentProgress
)
case .midi:
try await export(
return try await export(
for: MIDIFileExportProfile.self,
media: media,
markers: markers,
Expand All @@ -40,7 +40,7 @@ extension MarkersExtractor {
parentProgress: parentProgress
)
case .notion:
try await export(
return try await export(
for: NotionExportProfile.self,
media: media,
markers: markers,
Expand Down

0 comments on commit 31625fe

Please sign in to comment.