- π¦πΊAustralia gargsuchi MelbourneI had the same error, but on a different line. 
 The attached patch fixed my error.
Upgraded to PHP74
Install PHP74 and run your website
Notice: Trying to access array offset on value of type null in _watcher_static() (line 3127 of watcher.module).
Change this
  if (is_NULL($value)) {
    return $static[$name];
  }
to this
  if (is_NULL($value)) {
    return (empty($name) || !isset($static[$name]) ? NULL : $static[$name]);
  }
1.0
Code
The issue particularly affects sites running on PHP version 7.4.0 or later.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I had the same error, but on a different line.
The attached patch fixed my error.