Compare commits
1 Commits
761013df81
...
3cabf3c229
Author | SHA1 | Date | |
---|---|---|---|
3cabf3c229 |
@ -65,9 +65,13 @@ func run(scan *bufio.Scanner) (*result, error) {
|
||||
|
||||
// rx is present.. perform part 2.
|
||||
if rx, ok := receivers["rx"]; ok {
|
||||
tip := m.m[rx[0]].(*conjunction) // panic if missing!
|
||||
|
||||
var tip *conjunction
|
||||
var lvalues []int
|
||||
|
||||
if p, ok := m.m[rx[0]].(*conjunction); ok {
|
||||
tip = p
|
||||
}
|
||||
|
||||
for k, v := range tip.pushes {
|
||||
for i, h := range makeHistory(v) {
|
||||
if i == 1 && len(h) > 0 && h[0] > 0 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user