diff --git a/plexapi/gdm.py b/plexapi/gdm.py index 84c7acafc..9610bb0d4 100644 --- a/plexapi/gdm.py +++ b/plexapi/gdm.py @@ -23,12 +23,12 @@ def scan(self, scan_for_clients=False): """Scan the network.""" self.update(scan_for_clients) - def all(self): + def all(self, scan_for_clients=False): """Return all found entries. Will scan for entries if not scanned recently. """ - self.scan() + self.scan(scan_for_clients) return list(self.entries) def find_by_content_type(self, value):