Skip to content

Commit b14dddc

Browse files
authored
Merge pull request #80 from wlynch/tlog-search
2 parents 426525d + adc48c8 commit b14dddc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

internal/apk/render.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ func renderMap(w *jsonOutputter, o map[string]interface{}, raw *json.RawMessage)
828828
if err := json.Unmarshal(js, &index); err != nil {
829829
log.Printf("json.Unmarshal[logIndex]: %v", err)
830830
} else if index != 0 {
831-
w.BlueDocNumber(fmt.Sprintf("https://rekor.tlog.dev/?logIndex=%d", index), strconv.FormatInt(int64(index), 10))
831+
w.BlueDocNumber(fmt.Sprintf("https://search.sigstore.dev/?logIndex=%d", index), strconv.FormatInt(int64(index), 10))
832832

833833
// Don't fall through to renderRaw.
834834
continue

internal/explore/render.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ func renderMap(w *jsonOutputter, o map[string]interface{}, raw *json.RawMessage)
910910
if err := json.Unmarshal(js, &index); err != nil {
911911
log.Printf("json.Unmarshal[logIndex]: %v", err)
912912
} else if index != 0 {
913-
w.BlueDocNumber(fmt.Sprintf("https://rekor.tlog.dev/?logIndex=%d", index), strconv.FormatInt(int64(index), 10))
913+
w.BlueDocNumber(fmt.Sprintf("https://search.sigstore.dev/?logIndex=%d", index), strconv.FormatInt(int64(index), 10))
914914

915915
// Don't fall through to renderRaw.
916916
continue

0 commit comments

Comments
 (0)