Ignore:
Timestamp:
09/04/26 19:36:17 (11 days ago)
Author:
MBK <marija.karapandzova@…>
Branches:
master
Children:
99ab276
Parents:
9af201e
Message:

Fix frontend appearance and fix bugs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • backend/src/main/java/medora/util/JwtUtil.java

    r9af201e rcdcff72  
    3030    public void init() {
    3131        logger.info("JwtUtil initialized - JWT Secret length: {}, Expiration: {}ms",
    32                 jwtSecret != null ? jwtSecret.length() : 0, jwtExpirationMs);
     32            jwtSecret != null ? jwtSecret.length() : 0, jwtExpirationMs);
    3333        if (jwtSecret == null || jwtSecret.isEmpty()) {
    3434            logger.error("⚠️ JWT_SECRET is not set or empty!");
     
    123123
    124124            logger.info("🔐 Validating token - secret hash: {}, secret length: {}, token length: {}",
    125                     jwtSecret.hashCode(), jwtSecret.length(), token.length());
     125                jwtSecret.hashCode(), jwtSecret.length(), token.length());
    126126
    127127            Jwts.parser()
Note: See TracChangeset for help on using the changeset viewer.