Hello,
I get a message on my SIM (yellow text):
Cannot determine if container access uses container type.
What type of container should i use for this code?
This is an OWM feature
function responseCallback(responseCode as Number, data as Dictionary or String or Null) as Void {
var backgroundData as Dictionary;
if (responseCode == 200) {
backgroundData = {
"1" => responseCode,
"2" => Time.now().value(),
"3" => data["main"]["temp"],
"4" => data["weather"][0]["icon"],
};
} else {
backgroundData = {
"1" => responseCode,
"2" => Time.now().value(),
};
}
Background.exit(backgroundData);
}
Thank you