Fix null return

This commit is contained in:
Serghei Cebotari 2024-11-13 23:43:27 +03:00
parent f8c62c6def
commit 843f73fec8

View File

@ -65,6 +65,6 @@ public class YandexOcrClient : IOcrClient
return result;
}
}
return null;
return Enumerable.Empty<object[,]>();
}
}