This commit is contained in:
JMARyA 2024-09-25 23:01:02 +02:00
parent 8723cd53ee
commit 82d258f74a
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -255,7 +255,7 @@ class API {
{"produced": produced?.map((x) => x.json()).toList()}));
if (produced != null) {
return resp["produced"] as List<String>;
return (resp["produced"] as List<dynamic>).cast<String>();
}
return null;