Hello All...
I've activated the FireFly DAAP and seems very simple and powerful, but after a while a Noticed two issues.
There is always a crash when I try to use access it from RythmBox(Ubuntu 10.04LT)
Here I realized that was an issue with RythmBox removing some conection headers. (Fix in
here). But there is no an issue of FireFly
However I also experienced that Itunes10 wasnt happy with our MediaServer, seems that it doesnt retrieve the song list properly.(More info
here on Page 5). A good guy provided a patch Im attaching below.
Is there any probability to have firefly svn-1696 recompiled? Seems that firefly group is not being active for long.
Thanks in advance TheHijacker
Joze
--------------
diff -u mt-daapd-svn-1696.original/src/plugins/out-daap-proto.c mt-daapd-svn-1696/src/plugins/out-daap-proto.c
--- mt-daapd-svn-1696.original/src/plugins/out-daap-proto.c 2007-08-10 00:07:23.000000000 -0400
+ mt-daapd-svn-1696/src/plugins/out-daap-proto.c 2010-09-07 19:04:44.932978839 -0400
@@ -716,6 +716,8 @@
/* aeHV */
size += 9;
+ size += 12;
+
return size;
break;
@@ -920,6 +922,9 @@
if(daap_wantsmeta(pinfo->meta, metaSongContentRating))
current += dmap_add_char(current,"ascr",
atoi(valarray[SG_CONTENTRATING]));
+
+ current += dmap_add_int(current, "aeMK", 1);
+
return 0;
break;
--------------