From 9f5a860d1ecaebb80530fc22607d34fc80d8c09d Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 04 Oct 2012 08:04:49 -0400 Subject: [PATCH] Fixed duplicate entries in repository cache (issue 140) --- src/com/gitblit/models/UserModel.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/com/gitblit/models/UserModel.java b/src/com/gitblit/models/UserModel.java index 6d5de3b..dd41df0 100644 --- a/src/com/gitblit/models/UserModel.java +++ b/src/com/gitblit/models/UserModel.java @@ -59,7 +59,7 @@ } private UserModel() { - this.username = "anonymous"; + this.username = "$anonymous"; this.isAuthenticated = false; } -- Gitblit v1.9.1