From 64837d8a0c8979318b51c4d8017413177dcad225 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Wed, 20 Jun 2012 10:14:06 -0400 Subject: [PATCH] Save ACL entries when in headless mode, so going non-headless doesn't ask for them again. --- src/libtomahawk/AclRegistry.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libtomahawk/AclRegistry.cpp b/src/libtomahawk/AclRegistry.cpp index 797a2c7d7..7b89436a7 100644 --- a/src/libtomahawk/AclRegistry.cpp +++ b/src/libtomahawk/AclRegistry.cpp @@ -180,6 +180,7 @@ ACLRegistry::isAuthorizedUser( const QString& dbid, const QString &username, ACL #endif m_cache.append( user ); + save(); emit aclResult( dbid, username, user.acl ); return user.acl; }