Torrent Plugin Fix; Ignoriere myfigurecollection in url_title
This commit is contained in:
parent
b8a220685a
commit
07fd686364
@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
do
|
do
|
||||||
|
|
||||||
|
require("./plugins/time")
|
||||||
|
|
||||||
local function set_location(user_id, location)
|
local function set_location(user_id, location)
|
||||||
local hash = 'user:'..user_id
|
local hash = 'user:'..user_id
|
||||||
local set_location = get_location(user_id)
|
local set_location = get_location(user_id)
|
||||||
@ -40,6 +42,9 @@ local function run(msg, matches)
|
|||||||
if not set_location then
|
if not set_location then
|
||||||
return 'Du hast keinen Ort gesetzt'
|
return 'Du hast keinen Ort gesetzt'
|
||||||
else
|
else
|
||||||
|
local lat,lng = get_latlong(set_location)
|
||||||
|
local receiver = get_receiver(msg)
|
||||||
|
send_location(receiver, lat, lng, ok_cb, false)
|
||||||
return 'Gesetzter Wohnort: '..set_location
|
return 'Gesetzter Wohnort: '..set_location
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -1,7 +1,21 @@
|
|||||||
local function search_kickass(query)
|
local https = require ('ssl.https')
|
||||||
local url = 'http://kat.cr/json.php?q='..URL.escape(query)
|
local ltn12 = require ("ltn12")
|
||||||
local b,c = http.request(url)
|
|
||||||
local data = json:decode(b)
|
local function search_kickass(query)
|
||||||
|
local url = 'https://kat.cr/json.php?q='..URL.escape(query)
|
||||||
|
|
||||||
|
local resp = {}
|
||||||
|
|
||||||
|
local b,c = https.request
|
||||||
|
{
|
||||||
|
url = url,
|
||||||
|
protocol = "tlsv1",
|
||||||
|
sink = ltn12.sink.table(resp)
|
||||||
|
}
|
||||||
|
|
||||||
|
resp = table.concat(resp)
|
||||||
|
|
||||||
|
local data = json:decode(resp)
|
||||||
|
|
||||||
local text = 'Results: '..data.total_results..'\n\n'
|
local text = 'Results: '..data.total_results..'\n\n'
|
||||||
local results = math.min(#data.list, 5)
|
local results = math.min(#data.list, 5)
|
||||||
|
@ -95,6 +95,7 @@ function run(msg, matches)
|
|||||||
string.match(msg.text, "wikia.com") or
|
string.match(msg.text, "wikia.com") or
|
||||||
string.match(msg.text, "rule34.xxx/index.php") or
|
string.match(msg.text, "rule34.xxx/index.php") or
|
||||||
string.match(msg.text, "openings.moe/%?video") or
|
string.match(msg.text, "openings.moe/%?video") or
|
||||||
|
string.match(msg.text, "myfigurecollection.net") or
|
||||||
string.match(msg.text, "dropbox.com/s/") then
|
string.match(msg.text, "dropbox.com/s/") then
|
||||||
print('Ungültig, da "'..title..'"')
|
print('Ungültig, da "'..title..'"')
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user