Implement indexing into Apache Druid #1

Closed
m wants to merge 263 commits from druid into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 65697ce8f0 - Show all commits

View File

@ -201,7 +201,7 @@ class IRCBot(IRCClient):
castDup["type"] = "highlight" castDup["type"] = "highlight"
self.event(**castDup) self.event(**castDup)
else: else:
if cast["channel"].lower() == self.nickname.lower(): if cast["channel"].lower() == self.nickname.lower() or not cast["channel"].startswith("#"):
cast["mtype"] = cast["type"] cast["mtype"] = cast["type"]
cast["type"] = "query" cast["type"] = "query"
# self.event(**castDup) # self.event(**castDup)