git ssb

15+

ansuz / dnssb



Commit 3779f68cf0e8d165ec21f398f884338a65725539

Put record class at the end of path, before type

cel committed on 11/2/2016, 11:24:19 PM
Parent: 9ed7859748c00b2f894a682a56f4676f6c85ba4f

Files changed

lib/publish.jschanged
lib/publish.jsView
@@ -56,9 +56,9 @@
5656
5757 var val = {
5858 type: "ssb-dns",
5959 record: record,
60- path: [record.class].concat(name.split(/\./g).reverse(), type)
60 + path: name.split(/\./g).reverse().concat(record.class, type)
6161 }
6262 if (branches.length > 1) val.branch = branches;
6363 else if (branches.length == 1) val.branch = branches[0];
6464

Built with git-ssb-web