aboutsummaryrefslogtreecommitdiff
path: root/backend/cache
diff options
context:
space:
mode:
Diffstat (limited to 'backend/cache')
-rw-r--r--backend/cache/cache.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/backend/cache/cache.go b/backend/cache/cache.go
index f999d86..56581b8 100644
--- a/backend/cache/cache.go
+++ b/backend/cache/cache.go
@@ -42,7 +42,6 @@ func (c *Cache) Get(hash, userPassword string) (db.Paste, error) {
}
// if there is a password, check the provided one against it
- println(p.Password)
if p.Password != "" {
// if passwords do not match, the user is unauthorized
if !hashing.PasswordsEqual(p.Password, userPassword) {