rygel r665 - trunk/src/rygel



Author: zeeshanak
Date: Sun Mar 15 19:01:37 2009
New Revision: 665
URL: http://svn.gnome.org/viewvc/rygel?rev=665&view=rev

Log:
Correct logic to decide wether to handle as interactive.

Modified:
   trunk/src/rygel/rygel-http-request.vala

Modified: trunk/src/rygel/rygel-http-request.vala
==============================================================================
--- trunk/src/rygel/rygel-http-request.vala	(original)
+++ trunk/src/rygel/rygel-http-request.vala	Sun Mar 15 19:01:37 2009
@@ -140,7 +140,7 @@
             uri = this.item.uris.get (0);
         }
 
-        if (this.item.size > 0 || this.transcode_target == null) {
+        if (this.item.size > 0 && this.transcode_target == null) {
             this.handle_interactive_item (uri);
         } else {
             this.handle_streaming_item (uri);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]