Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Corrected bug regarding the language code that is sent to the API.
  • Loading branch information
Pistos committed Aug 3, 2010
1 parent ad80353 commit 9ae4016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ideone.rb
Expand Up @@ -20,7 +20,7 @@ def self.submit( lang_, code )
Net::HTTP.post_form(
URI.parse("http://ideone.com/ideone/Index/submit/"),
{
'lang' => LANGUAGES[lang],
'lang' => lang,
'run' => 0,
'file' => code
}
Expand Down

0 comments on commit 9ae4016

Please sign in to comment.