Skip to content

Commit

Permalink
Use string type
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur authored Jul 11, 2018
1 parent 922dcba commit 7c912b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/networking/event_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class EventParser {
id: tagContents(node, 'ID'),
title: EventNameCleaner.cleanup(title),
originalTitle: EventNameCleaner.cleanup(originalTitle),
productionYear: int.parse(tagContents(node, 'ProductionYear')),
productionYear: tagContents(node, 'ProductionYear'),
genres: tagContents(node, 'Genres'),
directors: _parseDirectors(node.findAllElements('Director')),
actors: _parseActors(node.findAllElements('Actor')),
Expand Down

0 comments on commit 7c912b8

Please sign in to comment.