Skip to content

Commit

Permalink
azuredevops: Don't shorten adourl UDA
Browse files Browse the repository at this point in the history
This is inconsistent with all the other services and I suspect an
unintentional oversight.
  • Loading branch information
ryneeverett committed Jun 7, 2024
1 parent fa048f8 commit 6554e70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bugwarrior/services/azuredevops.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import typing_extensions

from bugwarrior import config
from bugwarrior.services import IssueService, Issue, ServiceClient, get_processed_url
from bugwarrior.services import IssueService, Issue, ServiceClient

log = logging.getLogger(__name__)

Expand Down Expand Up @@ -156,7 +156,7 @@ def to_taskwarrior(self):
self.record.get("fields").get("System.Description")
),
self.ID: self.record["id"],
self.URL: get_processed_url(self.main_config, self.record["_links"]["html"]["href"]),
self.URL: self.record["_links"]["html"]["href"],
self.TYPE: self.record["fields"]["System.WorkItemType"],
self.STATE: self.record["fields"]["System.State"],
self.ACTIVITY: self.record.get("fields").get("System.Activity", ""),
Expand Down

0 comments on commit 6554e70

Please sign in to comment.