Closed markuslf closed 2 years ago
Problem is located in githubHelper.ts, function importIssueAndComments(), line 451:
githubHelper.ts
importIssueAndComments()
if (settings.debug) return Promise.resolve({ data: issue });
If settings.debug is true, issue importing simply states ...DONE migrating issue #4711, and actually does nothing at all.
settings.debug
true
...DONE migrating issue #4711
Works as intended: https://github.com/piceaTech/node-gitlab-2-github#debug
Problem is located in
githubHelper.ts
, functionimportIssueAndComments()
, line 451:if (settings.debug) return Promise.resolve({ data: issue });
If
settings.debug
istrue
, issue importing simply states...DONE migrating issue #4711
, and actually does nothing at all.