Browse Source

Increase MaxDeviceInfoLength to 256

Updated the MaxDeviceInfoLength constant from 64 to 256 to allow for longer device information strings in identity sessions.
pull/23848/head
maliming 8 months ago
parent
commit
eb4c90b3f0
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 2
      modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionConsts.cs

2
modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionConsts.cs

@ -6,7 +6,7 @@ public class IdentitySessionConsts
public static int MaxDeviceLength { get; set; } = 64;
public static int MaxDeviceInfoLength { get; set; } = 64;
public static int MaxDeviceInfoLength { get; set; } = 256;
public static int MaxClientIdLength { get; set; } = 64;

Loading…
Cancel
Save