freedb.java user id - simple fix
Brought to you by:
xnarf
On one of my win32 hosts the user name is 'foo bar'
and the freedb server chokes on the space in the user
name .
the fix is obv --
change:
System.getProperty("user.name") + "+" + hostName + "+"
+ appName + "+" + version + "&proto=5";
with:
System.getProperty("user.name").replaceAll(" ","") +
"+" + hostName + "+" + appName + "+" + version +
"&proto=5";
-greg