From 44cd4244b9918584f5995eb2bd3c45570be39567 Mon Sep 17 00:00:00 2001 From: waldek Date: Mon, 6 Mar 2023 09:40:02 +1100 Subject: [PATCH] fixes the hardcoded protocol class in the server --- jetforce/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetforce/server.py b/jetforce/server.py index ce5fcc7..fa2f6dc 100644 --- a/jetforce/server.py +++ b/jetforce/server.py @@ -103,7 +103,7 @@ class GeminiServer(Factory): It builds the instance of the protocol class, which is what actually implements the Gemini protocol. """ - return GeminiProtocol(self, self.app) + return self.__class__.protocol_class(self, self.app) def initialize(self) -> None: """