Skip to content

Commit c3a5546

Browse files
committed
fix sessions.ErrNotFound.Equal example
Former-commit-id: 292eadaea9df1c680e68a3f92f86c8bf1edc2d7d
1 parent 1c79193 commit c3a5546

File tree

1 file changed

+3
-2
lines changed
  • _examples/sessions/database/badger

1 file changed

+3
-2
lines changed

_examples/sessions/database/badger/main.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package main
22

33
import (
4+
"errors"
45
"time"
56

67
"github.com/kataras/iris/v12"
@@ -90,9 +91,9 @@ func main() {
9091
app.Get("/update", func(ctx iris.Context) {
9192
// updates resets the expiration based on the session's `Expires` field.
9293
if err := sess.ShiftExpiration(ctx); err != nil {
93-
if sessions.ErrNotFound.Equal(err) {
94+
if errors.Is(err, sessions.ErrNotFound) {
9495
ctx.StatusCode(iris.StatusNotFound)
95-
} else if sessions.ErrNotImplemented.Equal(err) {
96+
} else if errors.Is(err, sessions.ErrNotImplemented) {
9697
ctx.StatusCode(iris.StatusNotImplemented)
9798
} else {
9899
ctx.StatusCode(iris.StatusNotModified)

0 commit comments

Comments
 (0)