diff --git a/restws.formats.inc b/restws.formats.inc
index 9a1658d..b3a8f16 100644
--- a/restws.formats.inc
+++ b/restws.formats.inc
@@ -448,7 +448,7 @@ abstract class RestWSBaseFormat implements RestWSFormatInterface {
 function restws_property_access_filter($wrapper) {
   $filtered = array();
   foreach ($wrapper as $name => $property) {
-    if ($property->access('view')) {
+    if ($property->value() !== FALSE && $property->access('view')) {
       $filtered[$name] = $property;
     }
   }
