Skip to content

Commit

Permalink
fix lomoweb cmd options
Browse files Browse the repository at this point in the history
  • Loading branch information
fuji246 committed Aug 10, 2020
1 parent 9ec9b6c commit 66e015c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions LomoAgent/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2232cec</string>
<string>9ec9b6c</string>
<key>CFBundleVersion</key>
<string>2020_08_09.18_06_33.0.2232cec</string>
<string>2020_08_09.18_56_27.0.9ec9b6c</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion LomoAgent/StatusMenuController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class StatusMenuController: NSObject {
if let lomodPort = UserDefaults.standard.string(forKey: PREF_LOMOD_PORT) {
let lomoWebPort = UserDefaults.standard.integer(forKey: PREF_LOMOD_PORT) + 1
task.launchPath = lomoWebPath
task.arguments = ["--baseport", lomodPort,
task.arguments = ["--baseurl", "http://" + listenIp + ":" + lomodPort,
"--port", String(lomoWebPort)]
task.launch()

Expand Down

0 comments on commit 66e015c

Please sign in to comment.