Projet

Général

Profil

0001-idp_oidc-use-n-as-separator-between-redirect_uri-335.patch

Benjamin Dauvergne, 21 juin 2019 19:51

Télécharger (761 octets)

Voir les différences:

Subject: [PATCH 1/2] idp_oidc: use \n as separator between redirect_uri
 (#33516)

 src/authentic2_idp_oidc/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
src/authentic2_idp_oidc/models.py
52 52

  
53 53

  
54 54
def strip_words(data):
55
    return u' '.join([url for url in data.split()])
55
    return u'\n'.join([url for url in data.split()])
56 56

  
57 57

  
58 58
class OIDCClient(Service):
59
-