fix ID
This commit is contained in:
parent
a7e10ddba4
commit
d38a3e6dfc
|
@ -4,12 +4,10 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"path"
|
"path"
|
||||||
"strconv"
|
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -71,11 +69,7 @@ func handleReader(q chan Event, r io.Reader) error {
|
||||||
q <- &NotificationEvent{¬ification}
|
q <- &NotificationEvent{¬ification}
|
||||||
}
|
}
|
||||||
case "delete":
|
case "delete":
|
||||||
var id int64
|
q <- &DeleteEvent{ID(strings.TrimSpace(token[1]))}
|
||||||
id, err = strconv.ParseInt(strings.TrimSpace(token[1]), 10, 64)
|
|
||||||
if err == nil {
|
|
||||||
q <- &DeleteEvent{ID(fmt.Sprintf("%20d", id))}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
q <- &ErrorEvent{err}
|
q <- &ErrorEvent{err}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user