Removed unused function

This commit is contained in:
2017-04-20 22:50:12 +02:00
parent ba8536e1e5
commit 55be31b3db

View File

@@ -4,13 +4,6 @@ var rp = require('request-promise');
class PlexRepository {
read(strayId) {
return this.database.get(this.queries.read, strayId).then((row) => {
assert.notEqual(row, undefined, `Could not find list with id ${strayId}.`);
return row;
})
}
searchMedia(query) {
var options = {
uri: 'http://10.0.0.41:32400/search?query=' + query,