Open
Description
Hi, I'm trying to migrate my site from Disqus to isso, and while I was able to import my comments and the importer showed the specified thread IDs during the import, the actual database is still using the page URI as the thread identifier. For example:
sqlite> select uri,title from threads limit 5;
/comics/journal/400-Shoes|Journal: Shoes
/comics/journal/278-Things-that-go-splat-in-the-night|Journal: Things that go splat in the night
/comics/journal/322-Explosion|Journal: Explosion
/comics/journal/353-Rejection|Journal: Rejection
/comics/journal/469-Scary-pizza|Journal: Scary pizza
IN the above example, the thread with a thread ID of /comics/journal/400-Shoes
should actually have a thread ID of mt_1949
. When my site is configured to pull the comments with e.g.
<div id="isso-thread" data-thread-id="mt_1949">
the script correctly tries to retrieve the data with OPTIONS /?uri=mt_1949
but that doesn't return any results, as expected.
So, is there any way to tell the Disqus importer to use the specified thread ID rather than the URI?