Browse Source

removed shitty regexp

master
Yaroslav 5 years ago
parent
commit
3a97ef8cd0
  1. 4
      storage.go

4
storage.go

@ -143,10 +143,6 @@ func randId() string {
func load(c echo.Context, db *sql.DB) (*Note, int) { func load(c echo.Context, db *sql.DB) (*Note, int) {
q := c.Param("id") q := c.Param("id")
if !rexpNoteID.Match([]byte(q)) {
code := http.StatusNotFound
return nil, code
}
c.Logger().Debugf("loading note %s", q) c.Logger().Debugf("loading note %s", q)
stmt, _ := db.Prepare("select * from notes where id = ?") stmt, _ := db.Prepare("select * from notes where id = ?")
defer stmt.Close() defer stmt.Close()

Loading…
Cancel
Save