Skip to content

Commit

Permalink
Fix Jira search
Browse files Browse the repository at this point in the history
  • Loading branch information
BlythMeister committed Aug 20, 2018
1 parent 5c67a59 commit 1714394
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .paket/Paket.Restore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<PaketRestoreRequired Condition=" '$(PaketRestoreLockFileHash)' == '$(PaketRestoreCachedHash)' ">false</PaketRestoreRequired>
<PaketRestoreRequired Condition=" '$(PaketRestoreLockFileHash)' == '' ">true</PaketRestoreRequired>
</PropertyGroup>

<PropertyGroup Condition="'$(PaketPropsVersion)' != '5.174.2' ">
<PaketRestoreRequired>true</PaketRestoreRequired>
</PropertyGroup>
Expand All @@ -96,7 +96,7 @@
<PaketOriginalReferencesFilePath Condition=" !Exists('$(PaketOriginalReferencesFilePath)')">$(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references</PaketOriginalReferencesFilePath>
<!-- paket.references -->
<PaketOriginalReferencesFilePath Condition=" !Exists('$(PaketOriginalReferencesFilePath)')">$(MSBuildProjectDirectory)\paket.references</PaketOriginalReferencesFilePath>

<DoAllResolvedFilesExist>false</DoAllResolvedFilesExist>
<DoAllResolvedFilesExist Condition="Exists(%(PaketResolvedFilePaths.Identity))">true</DoAllResolvedFilesExist>
<PaketRestoreRequired>true</PaketRestoreRequired>
Expand Down
6 changes: 2 additions & 4 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ NUGET
MahApps.Metro.IconPacks.Material (2.3)
ControlzEx (>= 3.0.2.4 < 4.0)
Newtonsoft.Json (11.0.2)
Octokit (0.30)
SourceLink.Create.GitHub (>= 2.8)
Octokit (0.31)
RestSharp (106.3.1)
SourceLink.Create.GitHub (2.8.3)
System.ValueTuple (4.5)
ToastNotifications (2.2.5)
ToastNotifications (2.3.4)
2 changes: 1 addition & 1 deletion src/Gallifrey/JiraIntegration/JiraConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ private string GetJql(string searchText)
{
projectQuery += " OR ";
}
projectQuery += $"project = \"{firstProjectMatch.JiraProjectName}\"";
projectQuery += $"project = \"{firstProjectMatch.JiraProjectCode}\"";
}
else
{
Expand Down

0 comments on commit 1714394

Please sign in to comment.