--- sites/all/modules/media_soundcloud/providers/soundcloud.inc	2010-09-29 14:57:03.000000000 +0100
+++ sites/all/modules/media_soundcloud/providers/soundcloud_NEW.inc	2010-09-29 14:57:39.000000000 +0100
@@ -72,7 +72,13 @@ function emaudio_soundcloud_extract($emb
  * The embedded flash displaying the SoundCloud audio.
  */
 function theme_emaudio_soundcloud_flash($item, $embed, $width, $height, $autoplay) {
-  $output = '';  
+  $output = '';
+  
+  // If the swf element is null, return the embed code directly.
+  if (is_null($item['data']['swf'])) {
+    return $item['embed'];
+  }
+
   if ($embed) {
     if ($item['data']['emaudio_soundcloud_version'] >= 1) {
       $id = form_clean_id('soundcloud');
@@ -87,10 +93,10 @@ function theme_emaudio_soundcloud_flash(
 SOUNDCLOUDEMBED;
     }
   }
-
   return $output;
 }
 
+
 /**
  * Implementation of hook_PROVIDER_data().
  */
