We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 29692e1 + bf1bb27 commit a164bdaCopy full SHA for a164bda
1 file changed
lib/Service/CapabilitiesService.php
@@ -90,7 +90,8 @@ public function hasDocumentSigningSupport(): bool {
90
}
91
92
public function hasFormFilling(): bool {
93
- return $this->isVersionAtLeast('24.04.5.2');
+ $productVersion = $this->getCapabilities()['productVersion'] ?? '0.0.0.0';
94
+ return $this->isVersionAtLeast('24.04.5.2') || $productVersion === '0.0.0.0';
95
96
97
private function isVersionAtLeast(string $version): bool {
0 commit comments