Skip to content
Snippets Groups Projects
Commit 85788715 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Update lang.pl

parent 9fc59ba9
No related branches found
No related tags found
1 merge request!656Development
...@@ -17,7 +17,7 @@ my $json = <$fh>; ...@@ -17,7 +17,7 @@ my $json = <$fh>;
close $fh; close $fh;
# Decode the JSON String # Decode the JSON String
my $data = decode_json($json); my $data = JSON->new->utf8->decode($json);
# Wir durchlaufen den Hash: # Wir durchlaufen den Hash:
foreach my $key (keys %{$data}){ foreach my $key (keys %{$data}){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment