Browse Source

Do not save default values

Vova Tkach 6 years ago
parent
commit
1d356ba0a1
3 changed files with 12 additions and 3 deletions
  1. 4 1
      session/bool.go
  2. 4 1
      session/int.go
  3. 4 1
      session/string.go

+ 4 - 1
session/bool.go

@@ -17,6 +17,9 @@ func (this *Session) GetBool(name string, def bool) bool {
 }
 
 func (this *Session) SetBool(name string, value bool) {
+	isset := this.IsSetBool(name)
 	this.v.Bool[name] = value
-	this.c = true
+	if !(isset == false && value == false) {
+		this.c = true
+	}
 }

+ 4 - 1
session/int.go

@@ -17,6 +17,9 @@ func (this *Session) GetInt(name string, def int) int {
 }
 
 func (this *Session) SetInt(name string, value int) {
+	isset := this.IsSetInt(name)
 	this.v.Int[name] = value
-	this.c = true
+	if !(isset == false && value == 0) {
+		this.c = true
+	}
 }

+ 4 - 1
session/string.go

@@ -17,6 +17,9 @@ func (this *Session) GetString(name string, def string) string {
 }
 
 func (this *Session) SetString(name string, value string) {
+	isset := this.IsSetString(name)
 	this.v.String[name] = value
-	this.c = true
+	if !(isset == false && value == "") {
+		this.c = true
+	}
 }