We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c79193 commit c3a5546Copy full SHA for c3a5546
_examples/sessions/database/badger/main.go
@@ -1,6 +1,7 @@
1
package main
2
3
import (
4
+ "errors"
5
"time"
6
7
"github.com/kataras/iris/v12"
@@ -90,9 +91,9 @@ func main() {
90
91
app.Get("/update", func(ctx iris.Context) {
92
// updates resets the expiration based on the session's `Expires` field.
93
if err := sess.ShiftExpiration(ctx); err != nil {
- if sessions.ErrNotFound.Equal(err) {
94
+ if errors.Is(err, sessions.ErrNotFound) {
95
ctx.StatusCode(iris.StatusNotFound)
- } else if sessions.ErrNotImplemented.Equal(err) {
96
+ } else if errors.Is(err, sessions.ErrNotImplemented) {
97
ctx.StatusCode(iris.StatusNotImplemented)
98
} else {
99
ctx.StatusCode(iris.StatusNotModified)
0 commit comments