diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-04-18 10:57:55 +0200 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-04-18 10:57:55 +0200 |
commit | 35e4de645db0a41704516fc2534390a27310d8d8 (patch) | |
tree | a3c5f48068c8bea70e4b621ec700a0b5ef1a688b | |
parent | f7b69992c780be685f014808118a94aef3d87fed (diff) |
fixed setting title from filename in adplug plugin
-rw-r--r-- | plugins/adplug/adplug-db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/adplug/adplug-db.cpp b/plugins/adplug/adplug-db.cpp index c0c9699b..4fa90b4d 100644 --- a/plugins/adplug/adplug-db.cpp +++ b/plugins/adplug/adplug-db.cpp @@ -252,7 +252,7 @@ adplug_insert (DB_playItem_t *after, const char *fname) { adplug_add_meta (it, "title", p->gettitle().c_str()); } else { - adplug_add_meta (it, "title", NULL); + deadbeef->pl_add_meta (it, "title", NULL); } if (!p->getdesc().empty()) { adplug_add_meta (it, "comment", p->getdesc().c_str()); |