Skip to content

Commit

Permalink
fix(desktop): Require 1.0.0 desktop client in all cases
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Jan 16, 2025
1 parent fb333eb commit a00741d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/Middleware/CanUseTalkMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,12 @@
use OCP\IUserSession;

class CanUseTalkMiddleware extends Middleware {
public const TALK_DESKTOP_MIN_VERSION = '0.6.0';
public const TALK_DESKTOP_MIN_VERSION_RECORDING_CONSENT = '0.16.0';
public const TALK_DESKTOP_MIN_VERSION = '1.0.0';
/**
* Actual version was 0.16.0 but otherwise the logic would differ in the version check,
* so we simply bump the recording consent version as well
*/
public const TALK_DESKTOP_MIN_VERSION_RECORDING_CONSENT = '1.0.0';
public const TALK_DESKTOP_MIN_VERSION_E2EE_CALLS = '1.1.0';

public const TALK_ANDROID_MIN_VERSION = '15.0.0';
Expand Down

0 comments on commit a00741d

Please sign in to comment.