diff options
author | Bastien Nocera <hadess@hadess.net> | 2007-10-15 09:58:28 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2007-10-15 09:58:28 +0000 |
commit | 8d57b7677d78e55d736502622fb9ada9d5bee8bc (patch) | |
tree | 4dcdfc70e673f973b4d909f4b42c7ea51c6c2112 | |
parent | ae1a5905f20ca45711a9b103419351e3735259e4 (diff) |
Fix replaying the stream when we were redirected (Closes: #486459)
2007-10-15 Bastien Nocera <hadess@hadess.net>
* browser-plugin/totem-plugin-viewer.c:
(totem_embedded_open_stream):
Fix replaying the stream when we were redirected
(Closes: #486459)
svn path=/trunk/; revision=4771
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | browser-plugin/totem-plugin-viewer.c | 3 |
2 files changed, 17 insertions, 0 deletions
@@ -1,3 +1,17 @@ +2007-10-15 Bastien Nocera <hadess@hadess.net> + + * browser-plugin/totem-plugin-viewer.c: + (totem_embedded_open_stream): + Fix replaying the stream when we were redirected + (Closes: #486459) + +2007-10-15 Bastien Nocera <hadess@hadess.net> + + reviewed by: <delete if not using a buddy> + + * browser-plugin/totem-plugin-viewer.c: + (totem_embedded_open_stream): + 2007-10-14 Philip Withnall <pwithnall@svn.gnome.org> * src/plugins/youtube/youtube.py: Code from Jan Arne Petersen diff --git a/browser-plugin/totem-plugin-viewer.c b/browser-plugin/totem-plugin-viewer.c index ff231337..40ce885d 100644 --- a/browser-plugin/totem-plugin-viewer.c +++ b/browser-plugin/totem-plugin-viewer.c @@ -963,6 +963,9 @@ totem_embedded_open_stream (TotemEmbedded *emb, bacon_video_widget_close (emb->bvw); totem_embedded_set_uri (emb, uri, base_uri, TRUE); + /* We can only have one item in the "playlist" when + * we open a browser stream */ + emb->num_items = 1; /* FIXME: consume any remaining input from stdin */ |