forked from shaytan/rdgen
fix the & symbol in company name
This commit is contained in:
2
.github/workflows/generator-macos.yml
vendored
2
.github/workflows/generator-macos.yml
vendored
@@ -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
|
||||
|
||||
@@ -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']
|
||||
|
||||
Reference in New Issue
Block a user