+2
-2
api/cbor_gen.go
+2
-2
api/cbor_gen.go
···
792
case cbg.MajNegativeInt:
793
extraI = int64(extra)
794
if extraI < 0 {
795
-
return fmt.Errorf("int64 negative oveflow")
796
}
797
extraI = -1 - extraI
798
default:
···
818
case cbg.MajNegativeInt:
819
extraI = int64(extra)
820
if extraI < 0 {
821
-
return fmt.Errorf("int64 negative oveflow")
822
}
823
extraI = -1 - extraI
824
default:
···
792
case cbg.MajNegativeInt:
793
extraI = int64(extra)
794
if extraI < 0 {
795
+
return fmt.Errorf("int64 negative overflow")
796
}
797
extraI = -1 - extraI
798
default:
···
818
case cbg.MajNegativeInt:
819
extraI = int64(extra)
820
if extraI < 0 {
821
+
return fmt.Errorf("int64 negative overflow")
822
}
823
extraI = -1 - extraI
824
default:
+1
-1
docs/feed-proposal.md
+1
-1
docs/feed-proposal.md
···
4
5
## Motivation
6
The interface for requesting and getting back feeds is something that I feel is really at the core of what bluesky offers. The user should be able to choose what feeds they subscribe to, feeds should be first class objects, they should be able to be efficiently generated and consumed, and they should be able to trustlessly come from anywhere.
7
-
Theres a lot of changes we *could* make to the current structure, but I don't want to stray too far from where we are at right now.
8
9
10
```go
···
4
5
## Motivation
6
The interface for requesting and getting back feeds is something that I feel is really at the core of what bluesky offers. The user should be able to choose what feeds they subscribe to, feeds should be first class objects, they should be able to be efficiently generated and consumed, and they should be able to trustlessly come from anywhere.
7
+
There are a lot of changes we *could* make to the current structure, but I don't want to stray too far from where we are at right now.
8
9
10
```go
+1
-1
indexer/indexer.go
+1
-1
indexer/indexer.go
+2
-2
lex/gen.go
+2
-2
lex/gen.go
···
555
556
main, ok := s.Defs["main"]
557
if !ok {
558
-
return fmt.Errorf("schema %q doesnt have a main def", s.ID)
559
}
560
561
if main.Type == "procedure" || main.Type == "query" {
···
642
643
main, ok := s.Defs["main"]
644
if !ok {
645
-
return fmt.Errorf("schema %q doesnt have a main def", s.ID)
646
}
647
648
if main.Type == "procedure" || main.Type == "query" {
···
555
556
main, ok := s.Defs["main"]
557
if !ok {
558
+
return fmt.Errorf("schema %q doesn't have a main def", s.ID)
559
}
560
561
if main.Type == "procedure" || main.Type == "query" {
···
642
643
main, ok := s.Defs["main"]
644
if !ok {
645
+
return fmt.Errorf("schema %q doesn't have a main def", s.ID)
646
}
647
648
if main.Type == "procedure" || main.Type == "query" {
+1
-1
mst/cbor_gen.go
+1
-1
mst/cbor_gen.go
+1
-1
mst/diff.go
+1
-1
mst/diff.go
+1
-1
mst/mst.go
+1
-1
mst/mst.go
+1
-1
repo/cbor_gen.go
+1
-1
repo/cbor_gen.go
+1
-1
server/auth.go
+1
-1
server/auth.go