risoluzione conflitto tra circolari e memoria
This commit is contained in:
parent
af388fc448
commit
e9cdc5a7ac
@ -57,6 +57,11 @@ module.exports = (robot) ->
|
|||||||
if query? then query = query.replace '?', ''
|
if query? then query = query.replace '?', ''
|
||||||
# Estrazione argomento della query
|
# Estrazione argomento della query
|
||||||
arg = (res.match[3] or res.match[2] or res.match[1]).toLowerCase().replace('?','')
|
arg = (res.match[3] or res.match[2] or res.match[1]).toLowerCase().replace('?','')
|
||||||
|
# Se l'argomento è una richiesta di circolari skippo
|
||||||
|
console.log query, arg
|
||||||
|
if arg.match /^le (?:ultime )?(?:\d+ )?circolari(?:\?)?$/i
|
||||||
|
# non rispondo
|
||||||
|
return
|
||||||
# Controllo se l'argomento è data
|
# Controllo se l'argomento è data
|
||||||
argIsDate = arg.trim().match(/^(?:il )?\d{4}-\d{1,2}-\d{1,2}$/i) and moment(arg,'YYYY-MM-DD').isValid()
|
argIsDate = arg.trim().match(/^(?:il )?\d{4}-\d{1,2}-\d{1,2}$/i) and moment(arg,'YYYY-MM-DD').isValid()
|
||||||
if argIsDate and (query is 'quand' or query is 'cos')
|
if argIsDate and (query is 'quand' or query is 'cos')
|
||||||
|
Loading…
Reference in New Issue
Block a user