From 12d14c472fdb872efc6d657852346ee7ee8092b1 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Sat, 7 Oct 2006 20:28:41 +0200 Subject: [PATCH] Initialize properties with nil rather than an empty hash. This made only sense in the past before propdicts were introduced. --- lib/playlist_item.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/playlist_item.rb b/lib/playlist_item.rb index 2a2deac..f3d397f 100644 --- a/lib/playlist_item.rb +++ b/lib/playlist_item.rb @@ -15,7 +15,7 @@ class PlaylistItem @selected = false @hilighted = false - @props = {} + @props = nil @xmms.medialib_get_info(id).notifier do |res| self.properties = res.value -- 2.30.2