Update server.py

Co-Authored-By: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com>
This commit is contained in:
ehpersonal38
2022-05-10 13:13:02 -04:00
parent 45fbc435c7
commit a6a8c3b46f
+1 -1
View File
@@ -225,7 +225,7 @@ def analyzeAudioData(chunks, lat, lon, week, sensitivity, overlap,):
return detections
def sendAppriseNotifications(species,confidence):
if os.path.getsize(userDir + '/BirdNET-Pi/apprise.txt') > 0:
if os.path.exists(userDir + '/BirdNET-Pi/apprise.txt') and os.path.getsize(userDir + '/BirdNET-Pi/apprise.txt') > 0:
with open(userDir + '/BirdNET-Pi/scripts/thisrun.txt', 'r') as f:
this_run = f.readlines()
title = str(str(str([i for i in this_run if i.startswith('APPRISE_NOTIFICATION_TITLE')]).split('=')[1]).split('\\')[0]).replace('"', '')