From 843f73fec8269a3c67e494f2abd8e0cd5f7b3d31 Mon Sep 17 00:00:00 2001
From: Serghei Cebotari <serghei@cebotari.ru>
Date: Wed, 13 Nov 2024 23:43:27 +0300
Subject: Fix null return

---
 OcrClient/Services/YandexOcrClient.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/OcrClient/Services/YandexOcrClient.cs b/OcrClient/Services/YandexOcrClient.cs
index 8568e38..3146e84 100644
--- a/OcrClient/Services/YandexOcrClient.cs
+++ b/OcrClient/Services/YandexOcrClient.cs
@@ -65,6 +65,6 @@ public class YandexOcrClient : IOcrClient
 				return result;
 			}
 		}
-		return null;
+		return Enumerable.Empty<object[,]>();
 	}
 }
\ No newline at end of file
-- 
cgit v1.2.3