diff --git a/drift/lib/src/remote/server_impl.dart b/drift/lib/src/remote/server_impl.dart
index 5803f38c4..954f95ec7 100644
--- a/drift/lib/src/remote/server_impl.dart
+++ b/drift/lib/src/remote/server_impl.dart
@@ -106,7 +106,7 @@ class ServerImplementation implements DriftServer {
     } else if (payload is NotifyTablesUpdated) {
       for (final connected in _activeChannels) {
         if (connected != comms) {
-          connected.request(payload);
+          connected.notify(payload);
         }
       }
     } else if (payload is RunTransactionAction) {