summaryrefslogtreecommitdiff
path: root/src/MediaDataRepresentation.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/MediaDataRepresentation.vala')
-rw-r--r--src/MediaDataRepresentation.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MediaDataRepresentation.vala b/src/MediaDataRepresentation.vala
index 3400577..e0e6b7f 100644
--- a/src/MediaDataRepresentation.vala
+++ b/src/MediaDataRepresentation.vala
@@ -596,7 +596,7 @@ public abstract class MediaSourceCollection : DatabaseSourceCollection {
string[] components = source_id.split("-");
assert(components.length == 2);
- return fetch_by_numeric_id(parse_int64(components[1], 16));
+ return fetch_by_numeric_id(int64.parse(components[1], 16));
}
public abstract Gee.Collection<string> get_event_source_ids(EventID event_id);