Start to add compatibility with squee returning #f for null values
While maintaining compatibility for older versions of squee.
This commit is contained in:
parent
7df6f92036
commit
64a4058cce
6 changed files with 53 additions and 38 deletions
|
|
@ -1587,7 +1587,8 @@ ORDER BY load_new_guix_revision_jobs.id DESC")
|
|||
((id source git-repository-id created-at succeeded-at
|
||||
events-json log-exists?)
|
||||
(list id commit source git-repository-id created-at succeeded-at
|
||||
(if (string-null? events-json)
|
||||
(if (or (eq? #f events-json)
|
||||
(string-null? events-json))
|
||||
#()
|
||||
(json-string->scm events-json))
|
||||
(string=? log-exists? "t"))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue