summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-08-17 16:13:56 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-08-17 16:13:56 -0400
commit6bb4030dbc5579b9db126c837e9d85a91810c4b1 (patch)
treec2698fe1ead7da2f58cedd96444d92513f0aa45f
parent9eddd132a86c68da95286d109c78a6546bec0cb1 (diff)
downloadsdl_ios-6bb4030dbc5579b9db126c837e9d85a91810c4b1.tar.gz
Fix metadatatype mediaYear
-rw-r--r--SmartDeviceLink/SDLMetadataType.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLMetadataType.m b/SmartDeviceLink/SDLMetadataType.m
index c232b0948..f9a8c3cc9 100644
--- a/SmartDeviceLink/SDLMetadataType.m
+++ b/SmartDeviceLink/SDLMetadataType.m
@@ -78,7 +78,7 @@ NSArray *SDLMetadataType_values = nil;
+ (SDLMetadataType *)MEDIA_YEAR {
if (SDLMetadataType_MEDIA_YEAR == nil) {
- SDLMetadataType_MEDIA_YEAR = [[SDLMetadataType alloc] initWithValue:@"mediaArtist"];
+ SDLMetadataType_MEDIA_YEAR = [[SDLMetadataType alloc] initWithValue:@"mediaYear"];
}
return SDLMetadataType_MEDIA_YEAR;
}