sprout-flashplayer-bundle 10.22.2 → 10.22.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/clix_flash_player.rb +2 -3
- data/lib/sprout/flashplayer/version.rb +1 -1
- metadata +1 -1
data/lib/clix_flash_player.rb
CHANGED
@@ -37,9 +37,8 @@ class CLIXFlashPlayer
|
|
37
37
|
@activate_pid, stdin, stdout, stderr = open4.popen4(command)
|
38
38
|
puts stdout.read
|
39
39
|
error = stderr.read
|
40
|
-
raise error if !error.nil?
|
41
|
-
|
42
|
-
# Process.wait(@player_pid)
|
40
|
+
raise error if !error.nil? && error != ''
|
41
|
+
Process.wait(@player_pid)
|
43
42
|
rescue StandardError => e
|
44
43
|
kill
|
45
44
|
raise e
|