Skip to content

Commit 95f4cc4

Browse files
authored
Update CheckinLinkGenerator.py
Correct the parameter name from documentation
1 parent 7095f43 commit 95f4cc4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CheckinLinkGenerator/CheckinLinkGenerator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
} else {
8989
let credentials = model.user() + ":" + model.pass();
9090
let encodedCreds = btoa(credentials);
91-
url += "cred=" + encodeURIComponent(encodedCreds);
91+
url += "id=" + encodeURIComponent(encodedCreds);
9292
}
9393
return url;
9494
});
@@ -108,4 +108,4 @@
108108
109109
ko.applyBindings(new LinkGenModel());
110110
111-
</script>''' % (model.CmsHost))
111+
</script>''' % (model.CmsHost))

0 commit comments

Comments
 (0)