print original name in handle format
This commit is contained in:
parent
5d0fb4d41c
commit
0b1f182a94
3
fun.go
3
fun.go
|
@ -49,6 +49,9 @@ func reverbolate(honks []*Honk) {
|
||||||
h.URL = h.XID
|
h.URL = h.XID
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if h.Oonker != "" {
|
||||||
|
_, h.Oondle = honkerhandle(h.Oonker)
|
||||||
|
}
|
||||||
zap := make(map[*Donk]bool)
|
zap := make(map[*Donk]bool)
|
||||||
h.Noise = unpucker(h.Noise)
|
h.Noise = unpucker(h.Noise)
|
||||||
precis := h.Precis
|
precis := h.Precis
|
||||||
|
|
1
honk.go
1
honk.go
|
@ -59,6 +59,7 @@ type Honk struct {
|
||||||
Honker string
|
Honker string
|
||||||
Handle string
|
Handle string
|
||||||
Oonker string
|
Oonker string
|
||||||
|
Oondle string
|
||||||
XID string
|
XID string
|
||||||
RID string
|
RID string
|
||||||
Date time.Time
|
Date time.Time
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
{{ if .Oonker }}
|
{{ if .Oonker }}
|
||||||
<br>
|
<br>
|
||||||
<span style="margin-left: 1em;" class="clip">
|
<span style="margin-left: 1em;" class="clip">
|
||||||
original: {{ .Oonker }}
|
original: {{ .Oondle }}
|
||||||
</span>
|
</span>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ if .RID }}
|
{{ if .RID }}
|
||||||
|
|
Loading…
Reference in New Issue