diff --git a/src/io/json.cpp b/src/io/json.cpp index 208406b..e96cb25 100644 --- a/src/io/json.cpp +++ b/src/io/json.cpp @@ -118,7 +118,7 @@ namespace fc in.get(); return token.str(); default: - if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' ) + if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' || c == '/' ) { token << c; in.get();