Skip to content

Commit 8b12352

Browse files
committed
Fix flash data out encoding.
1 parent 92c439e commit 8b12352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/src/play/mvc/Scope.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ static Flash restore() {
5252

5353
void save() {
5454
try {
55-
String flashData = CookieDataCodec.encode(data);
55+
String flashData = CookieDataCodec.encode(out);
5656
Http.Response.current().setCookie(COOKIE_PREFIX + "_FLASH", flashData, null, "/", null, COOKIE_SECURE);
5757
} catch (Exception e) {
5858
throw new UnexpectedException("Flash serializationProblem", e);

0 commit comments

Comments
 (0)