Browse Source

Change condition

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

+ 1 - 1
session/bool.go

@@ -19,7 +19,7 @@ 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
-	if !(isset == false && value == false) {
+	if isset || value != false {
 		this.c = true
 	}
 }

+ 1 - 1
session/int.go

@@ -19,7 +19,7 @@ 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
-	if !(isset == false && value == 0) {
+	if isset || value != 0 {
 		this.c = true
 	}
 }

+ 1 - 1
session/string.go

@@ -19,7 +19,7 @@ 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
-	if !(isset == false && value == "") {
+	if isset || value != "" {
 		this.c = true
 	}
 }