mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Return recursive call
This commit is contained in:
parent
207a06ed74
commit
fc990fb2ab
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ struct SafariWebLink: Identifiable {
|
|||
articleContent = try await dataService.fetchArticleContent(itemID: itemID)
|
||||
} catch {
|
||||
if retryCount == 0 {
|
||||
await loadContent(dataService: dataService, itemID: itemID, retryCount: 1)
|
||||
return await loadContent(dataService: dataService, itemID: itemID, retryCount: 1)
|
||||
}
|
||||
if let fetchError = error as? ContentFetchError {
|
||||
switch fetchError {
|
||||
|
|
|
|||
Loading…
Reference in a new issue