alaingilbert / Turntable-API

Allows you to create bots for turntable.fm
http://alaingilbert.github.com/Turntable-API/
MIT License
317 stars 98 forks source link

removing profile data #74

Open mcgrailm opened 12 years ago

mcgrailm commented 12 years ago

I have change the profile data of my bot just like the example

bot.modifyProfile({ website:'http://ttdashboard.com/', about:'My bot.' }, callback);

and then realized that we didn't want any data in the block about. then realized if I leave it blank then it will use the previous value so I am wondering how to remove it ?

thanks mcgrailm

x3chaos commented 12 years ago

Have you tried using this?

bot.modifyProfile({ about:' ' }, callback);