diff --git a/classes/sanitizer.php b/classes/sanitizer.php
index 9f3bfada070db7004654cd71faabc0c63004b54b..64b2edd369d84f18ecdb8ade788426ad1337dc0a 100644
--- a/classes/sanitizer.php
+++ b/classes/sanitizer.php
@@ -97,7 +97,7 @@ class Sanitizer {
 			}
 
 			if ($entry->hasAttribute('src') &&
-					($owner && get_pref("STRIP_IMAGES", $owner)) || $force_remove_images || $_SESSION["bw_limit"]) {
+					($owner && get_pref("STRIP_IMAGES", $owner)) || $force_remove_images || ($_SESSION["bw_limit"] ?? false)) {
 
 				$p = $doc->createElement('p');
 
@@ -147,7 +147,7 @@ class Sanitizer {
 			'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time',
 			'tr', 'track', 'tt', 'u', 'ul', 'var', 'wbr', 'video', 'xml:namespace' );
 
-		if ($_SESSION['hasSandbox']) $allowed_elements[] = 'iframe';
+		if ($_SESSION['hasSandbox'] ?? false) $allowed_elements[] = 'iframe';
 
 		$disallowed_attributes = array('id', 'style', 'class', 'width', 'height', 'allow');
 
diff --git a/plugins/af_redditimgur/init.php b/plugins/af_redditimgur/init.php
index 610ff538943f010965bfd01ab3bf38900c09beb5..60e00c74cfcd06fc78a0338339aa4aa5a4762a32 100755
--- a/plugins/af_redditimgur/init.php
+++ b/plugins/af_redditimgur/init.php
@@ -103,13 +103,15 @@ class Af_RedditImgur extends Plugin {
 
 		if (isset($data["media_metadata"])) {
 			foreach ($data["media_metadata"] as $media) {
-				$media_url = htmlspecialchars_decode($media["s"]["u"]);
+				if (!empty($media["s"]["u"])) {
+					$media_url = htmlspecialchars_decode($media["s"]["u"]);
 
-				Debug::log("found media_metadata (gallery): $media_url", Debug::$LOG_VERBOSE);
+					Debug::log("found media_metadata (gallery): $media_url", Debug::$LOG_VERBOSE);
 
-				if ($media_url) {
-					$this->handle_as_image($doc, $anchor, $media_url);
-					$found = 1;
+					if ($media_url) {
+						$this->handle_as_image($doc, $anchor, $media_url);
+						$found = 1;
+					}
 				}
 			}
 		}