mirror of
https://github.com/KevinMidboe/homeChecker.git
synced 2025-10-29 17:40:26 +00:00
Passed 'c'/cursor to getAddr from updateTimes()
This commit is contained in:
@@ -19,7 +19,7 @@ def getOnlineClients():
|
|||||||
print("Not able to run 'arp-scan -l' on this machine.")
|
print("Not able to run 'arp-scan -l' on this machine.")
|
||||||
exit(0)
|
exit(0)
|
||||||
|
|
||||||
def getAddr():
|
def getAddr(c):
|
||||||
c.execute('SELECT adr FROM clients')
|
c.execute('SELECT adr FROM clients')
|
||||||
|
|
||||||
return [i[0] for i in c.fetchall()]
|
return [i[0] for i in c.fetchall()]
|
||||||
@@ -63,7 +63,7 @@ def updateTimes():
|
|||||||
conn = sqlite3.connect('home.db')
|
conn = sqlite3.connect('home.db')
|
||||||
c = conn.cursor()
|
c = conn.cursor()
|
||||||
|
|
||||||
online = list(set(getOnlineClients()) & set(getAddr()))
|
online = list(set(getOnlineClients()) & set(getAddr(c)))
|
||||||
|
|
||||||
for adr in online:
|
for adr in online:
|
||||||
c.execute('UPDATE lastonline SET timesince='+ str(curTime) +' WHERE clientadr="cc:29:f5:b8:2d:a2"')
|
c.execute('UPDATE lastonline SET timesince='+ str(curTime) +' WHERE clientadr="cc:29:f5:b8:2d:a2"')
|
||||||
|
|||||||
Reference in New Issue
Block a user