summaryrefslogtreecommitdiffstats
path: root/src/web.vala
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2012-10-05 22:26:47 +0200
committerSebastian Reichel <sre@ring0.de>2012-10-05 22:26:47 +0200
commit22190faeace11d58b452d0c5dea8b7c613c08705 (patch)
treef884921f6e17cc9ca886c752e58d8f0892e72909 /src/web.vala
parent400a54fad59b0fbecb451ce86fc40655ce84139f (diff)
downloadserial-barcode-scanner-22190faeace11d58b452d0c5dea8b7c613c08705.tar.bz2
play audio on shutdown (GH-13)
Diffstat (limited to 'src/web.vala')
-rw-r--r--src/web.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web.vala b/src/web.vala
index 2e2e13f..9a77369 100644
--- a/src/web.vala
+++ b/src/web.vala
@@ -728,6 +728,6 @@ public class WebServer {
srv.add_handler("/users", handler_users);
srv.add_handler("/users/import", handler_user_import);
- srv.run();
+ srv.run_async();
}
}