summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2016-12-04 11:47:36 +0100
committerJens Georg <mail@jensge.org>2016-12-04 13:17:38 +0100
commitd29d19ebc0fa8331e9e506c1c424f048b0cfa052 (patch)
tree1e49fe92a15a9f5c97a3d3345ef63209d928f464
parenta4caf3cdf011deda73a0c2e3496d7d9c259d9115 (diff)
downloadrygel-d29d19ebc0fa8331e9e506c1c424f048b0cfa052.tar.gz
server: Use proper chain-up syntax
-rw-r--r--src/librygel-server/rygel-http-time-seek-response.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librygel-server/rygel-http-time-seek-response.vala b/src/librygel-server/rygel-http-time-seek-response.vala
index 4feb9af8..9f0eb0c1 100644
--- a/src/librygel-server/rygel-http-time-seek-response.vala
+++ b/src/librygel-server/rygel-http-time-seek-response.vala
@@ -160,9 +160,9 @@ public class Rygel.HTTPTimeSeekResponse : Rygel.HTTPResponseElement {
public HTTPTimeSeekResponse.from_request
(HTTPTimeSeekRequest time_seek_request,
int64 total_duration ) {
- HTTPTimeSeekResponse.time_only (time_seek_request.start_time,
- time_seek_request.end_time,
- total_duration );
+ this.time_only (time_seek_request.start_time,
+ time_seek_request.end_time,
+ total_duration);
}
public override void add_response_headers (Rygel.HTTPRequest request) {