Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Not all EN-Errors link to the FAQ page correctly #2024

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/xcode/ENA/ENA/Source/Extensions/Error+FAQUrl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ extension ENError {
return URL(string: AppStrings.Links.appFaqENError11)
case .rateLimited:
return URL(string: AppStrings.Links.appFaqENError13)
default: return nil
default:
return URL(string: AppStrings.Links.appFaq)
}
}
}