[banshee] Fix build-breaking typo I just introduced



commit 157459d14bbc780838b06dc330a207a396d35bdc
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Wed Jul 29 17:41:42 2009 -0700

    Fix build-breaking typo I just introduced

 .../Banshee.Core/Banshee.Streaming/StreamTagger.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs b/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
index 5586fcd..001dfd5 100644
--- a/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
+++ b/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
@@ -107,8 +107,8 @@ namespace Banshee.Streaming
             // the file is actual music, podcast, audiobook, movie, tv show, etc.
             // For now just assume that if it's only audio and not podcast, it's
             // music, since that's what we've just historically assumed on any media type
-            if (!track.HasAttributes (TrackMediaAttributes.VideoStream) &&
-                !track.HasAttributes (TrackMediaAttributes.Podcast)) {
+            if (!track.HasAttribute (TrackMediaAttributes.VideoStream) &&
+                !track.HasAttribute (TrackMediaAttributes.Podcast)) {
                 track.MediaAttributes |= TrackMediaAttributes.Music;
             }
         }



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