diff options
Diffstat (limited to 'Sources/gopherHandler.swift')
-rw-r--r-- | Sources/gopherHandler.swift | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Sources/gopherHandler.swift b/Sources/gopherHandler.swift index fb2c4c7..00a3a30 100644 --- a/Sources/gopherHandler.swift +++ b/Sources/gopherHandler.swift @@ -79,7 +79,7 @@ final class GopherHandler: ChannelInboundHandler { return .string(fileContents) } catch { logger.error("Error reading file: \(path.path) Error: \(error)") - return .string("3Error reading file...\terror.host\t1\r\n") + return .string("3Error reading file...\t\terror.host\t1\r\n") } } else { // Handle binary file @@ -88,14 +88,14 @@ final class GopherHandler: ChannelInboundHandler { return .data(fileContents) } catch { logger.error("Error reading binary file: \(path.path) Error: \(error)") - return .string("3Error reading file...\terror.host\t1\r\n") + return .string("3Error reading file...\t\terror.host\t1\r\n") } } } } else { logger.error("Error reading directory: \(path.path) Directory does not exist.") - return .string("3Error reading file...\terror.host\t1\r\n") + return .string("3Error reading file...\t\terror.host\t1\r\n") } } |