From ca17c82c8c792cf33663349aeccf87c62bff7da9 Mon Sep 17 00:00:00 2001 From: Xaekai Date: Mon, 16 Feb 2015 00:50:15 -0800 Subject: [PATCH] Make doubly sure fixed calzoneman/sync#445 --- lib/get-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/get-info.js b/lib/get-info.js index 9e8ab002..c07d0b09 100644 --- a/lib/get-info.js +++ b/lib/get-info.js @@ -418,7 +418,7 @@ var Getters = { dm: function (id, callback) { var m = id.match(/([\w-]+)/); if (m) { - id = m[1]; + id = m[1].split("_")[0]; } else { callback("Invalid ID", null); return;