aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2012-09-30 16:36:58 +0200
committermontellese <montellese@xbmc.org>2012-09-30 16:36:58 +0200
commit356b8fbb571d5f7c03b3a67c28f0e3eca00caf6f (patch)
treee78c850b6958b927a30587218b7cca985cd344da
parent942a9386208f792162f2501005183be016575106 (diff)
jsonrpc: fix bad JSON schema description of "country" property in List.Item.All
-rw-r--r--xbmc/interfaces/json-rpc/ServiceDescription.h2
-rw-r--r--xbmc/interfaces/json-rpc/types.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/interfaces/json-rpc/ServiceDescription.h b/xbmc/interfaces/json-rpc/ServiceDescription.h
index e44712a5d5..233e0d4bbd 100644
--- a/xbmc/interfaces/json-rpc/ServiceDescription.h
+++ b/xbmc/interfaces/json-rpc/ServiceDescription.h
@@ -946,7 +946,7 @@ namespace JSONRPC
"\"studio\": { \"$ref\": \"Array.String\" },"
"\"mpaa\": { \"type\": \"string\" },"
"\"cast\": { \"$ref\": \"Video.Cast\" },"
- "\"country\": { \"type\": \"string\" },"
+ "\"country\": { \"$ref\": \"Array.String\" },"
"\"imdbnumber\": { \"type\": \"string\" },"
"\"premiered\": { \"type\": \"string\" },"
"\"productioncode\": { \"type\": \"string\" },"
diff --git a/xbmc/interfaces/json-rpc/types.json b/xbmc/interfaces/json-rpc/types.json
index 9bfbab7f8c..4d38342935 100644
--- a/xbmc/interfaces/json-rpc/types.json
+++ b/xbmc/interfaces/json-rpc/types.json
@@ -919,7 +919,7 @@
"studio": { "$ref": "Array.String" },
"mpaa": { "type": "string" },
"cast": { "$ref": "Video.Cast" },
- "country": { "type": "string" },
+ "country": { "$ref": "Array.String" },
"imdbnumber": { "type": "string" },
"premiered": { "type": "string" },
"productioncode": { "type": "string" },