Skip to content

Commit

Permalink
[auth] Fix existing steam entry handling (#1992)
Browse files Browse the repository at this point in the history
## Description
Fixes #1980 #1982 
## Tests
  • Loading branch information
ua741 authored Jun 4, 2024
2 parents d839be5 + efcf304 commit 358761f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions auth/lib/utils/totp_util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:otp/otp.dart' as otp;
import 'package:steam_totp/steam_totp.dart';

String getOTP(Code code) {
if (code.type == Type.steam) {
if (code.type == Type.steam || code.issuer.toLowerCase() == 'steam') {
return _getSteamCode(code);
}
if (code.type == Type.hotp) {
Expand Down Expand Up @@ -39,7 +39,7 @@ String _getSteamCode(Code code, [bool isNext = false]) {
}

String getNextTotp(Code code) {
if (code.type == Type.steam) {
if (code.type == Type.steam || code.issuer.toLowerCase() == 'steam') {
return _getSteamCode(code, true);
}
return otp.OTP.generateTOTPCodeString(
Expand Down
2 changes: 1 addition & 1 deletion auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ente_auth
description: ente two-factor authenticator
version: 3.0.6+306
version: 3.0.7+307
publish_to: none

environment:
Expand Down

0 comments on commit 358761f

Please sign in to comment.