diff options
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ impl Args { self.umask.set(); let pool = self.pool().await.fail("Failed to create database pool")?; - let publisher = Publisher::new().fail("Failed to create web push publisher")?; + let publisher = Publisher::new(pool.clone()).fail("Failed to create web push publisher")?; let app = App::from(pool, publisher); match self.command { |
