This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 1cdf525  Fix crash in parsing check box
1cdf525 is described below

commit 1cdf52594b74729162e0053cec5e2f7b44abd8e5
Author: Sebb <[email protected]>
AuthorDate: Fri Jul 9 23:43:13 2021 +0100

    Fix crash in parsing check box
---
 www/secretary/iclaparser.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/secretary/iclaparser.rb b/www/secretary/iclaparser.rb
index 3dfc0df..eadf4b8 100644
--- a/www/secretary/iclaparser.rb
+++ b/www/secretary/iclaparser.rb
@@ -171,7 +171,7 @@ module ICLAParser
           else
             key = v[:T]
             if key
-              val = v[:V]
+              val = v[:V].to_s # might be a symbol
               # This is a hack; should really find the font def and use that
               if val
                 debug[key] = v.inspect

Reply via email to