Skip to content

Commit

Permalink
Content server: Fix --url-prefix feature not working with book conver…
Browse files Browse the repository at this point in the history
…sion
  • Loading branch information
kovidgoyal committed Oct 28, 2018
1 parent 59f7a1e commit 05c0293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyj/book_list/convert_book.pyj
Expand Up @@ -183,7 +183,7 @@ def start_conversion():
'book_id': conversion_data.book_id,
}
query = url_books_query()
ajax_send(f'/conversion/start/{conversion_data.book_id}', data, on_conversion_started, query=query)
ajax_send(f'conversion/start/{conversion_data.book_id}', data, on_conversion_started, query=query)
current_state = 'converting'
apply_state_to_markup()

Expand Down

0 comments on commit 05c0293

Please sign in to comment.