From 2fab25898415483b49aeadff333dd4e2804288ff Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 9 Dec 2023 20:49:26 -0700 Subject: fix \t\t --- Sources/gopherHandler.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Sources/gopherHandler.swift') 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") } } -- cgit v1.2.3