From ac087e021c974350d1050fb537bd8406705cf039 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 26 Jan 2009 17:31:36 -0600 Subject: [PATCH] return the real key name --- basis/mime/multipart/multipart.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/mime/multipart/multipart.factor b/basis/mime/multipart/multipart.factor index e8ba2b8cf4..fc3024bd01 100755 --- a/basis/mime/multipart/multipart.factor +++ b/basis/mime/multipart/multipart.factor @@ -99,7 +99,7 @@ ERROR: end-of-stream multipart ; dup name>> empty-name? [ drop ] [ - [ [ header>> ] [ name>> ] [ name-content>> ] tri mime-variable boa ] + [ [ header>> ] [ name>> unquote ] [ name-content>> ] tri mime-variable boa ] [ name>> unquote ] [ mime-parts>> set-at ] tri ] if ;