From 5d96f05f0b70c184d997d193829248893dbe49f9 Mon Sep 17 00:00:00 2001
From: Jiri Kalvoda <jirikalvoda@kam.mff.cuni.cz>
Date: Tue, 16 Aug 2022 15:45:39 +0200
Subject: [PATCH] Module: Http: Add another missing catch

---
 Module.cs | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Module.cs b/Module.cs
index a4b2560..a979c78 100644
--- a/Module.cs
+++ b/Module.cs
@@ -395,6 +395,9 @@ text = ERR
 			catch(System.Threading.Tasks.TaskCanceledException)
 			{
 			}
+			catch(System.OperationCanceledException)
+			{
+			}
 			Thread.Sleep(period_ms);
 		}
 	}
-- 
GitLab