fix the & symbol in company name

This commit is contained in:
Bryan Gerlach
2025-04-30 07:06:07 -05:00
parent cc59f1d58d
commit 050f4b3130
2 changed files with 2 additions and 1 deletions

View File

@@ -86,7 +86,7 @@ jobs:
build-for-macos:
name: ${{ matrix.job.target }}
runs-on: macos-latest
runs-on: ${{ matrix.job.os }}
needs: [generate-bridge]
strategy:
fail-fast: false

View File

@@ -50,6 +50,7 @@ def generator_view(request):
compname = form.cleaned_data['compname']
if not compname:
compname = "Purslane Ltd"
compname = compname.replace("&","\\&")
permPass = form.cleaned_data['permanentPassword']
theme = form.cleaned_data['theme']
themeDorO = form.cleaned_data['themeDorO']