Create a device if it doesn't exist

This commit is contained in:
Fabio Manganiello 2019-03-07 20:05:40 +01:00
parent f6221a798a
commit 9324ad3f9b
1 changed files with 5 additions and 1 deletions

View File

@ -55,7 +55,11 @@ class PushbulletBackend(Backend):
self.pb = Pushbullet(token)
self.pb_device_id = self.get_device_id()
self.listener = None
self.device = self.pb.get_device(self.device_name)
try:
self.device = self.pb.get_device(self.device_name)
except:
self.device = self.pb.new_device(self.device_name)
def _get_latest_push(self):