In make-resume-url: use argument session-id
(not instance-session-id) to create resume-url.
This commit is contained in:
parent
20821bdfb5
commit
ee5e3cd6ec
|
@ -552,7 +552,7 @@
|
||||||
;; All arguments are numbers except PATH-STRING, which is a string.
|
;; All arguments are numbers except PATH-STRING, which is a string.
|
||||||
(define (make-resume-url path-string session-id continuation-counter continuation-id)
|
(define (make-resume-url path-string session-id continuation-counter continuation-id)
|
||||||
(string-append path-string
|
(string-append path-string
|
||||||
";k" (number->string (instance-session-id))
|
";k" (number->string session-id)
|
||||||
";c" (number->string continuation-counter)
|
";c" (number->string continuation-counter)
|
||||||
"-" (number->string continuation-id)))
|
"-" (number->string continuation-id)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue