Skip to content

Commit

Permalink
fix: updated api url to prod
Browse files Browse the repository at this point in the history
  • Loading branch information
jtundag committed Jul 27, 2020
1 parent 424260b commit e462468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mmdv.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def run(self, edit):
class MmdvCommand(sublime_plugin.TextCommand):
def __init__(self, view):
super().__init__(view)
self.BASE_URL = 'localhost:3000'
self.connection = 'http'
self.BASE_URL = 'mem.dev'
self.connection = 'https'
self.__title = ''
self.__content = ''

Expand Down

0 comments on commit e462468

Please sign in to comment.