Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
采用新的Pixiv网页链接
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiichiamane committed Oct 14, 2019
1 parent c66db3e commit 11dd79c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PixivFSUWP/IllustDetailPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void DataTransferManager_DataRequested(DataTransferManager sender, DataR
{
var request = args.Request;
request.Data.SetText(string.Format("{0}\n{1} by {2}\n" +
"{3}:https://www.pixiv.net/member_illust.php?mode=medium&illust_id={4}\n" +
"{3}:https://www.pixiv.net/artworks/{4}\n" +
"PixivFSUWP:pixiv://illust?id={4}", GetResourceString("WorkPlain"), illust.Title, illust.Author, GetResourceString("LinkPlain"), illustID));
request.Data.Properties.Title = string.Format("{0}:{1}", GetResourceString("SharePlain"), illust.Title);
request.Data.Properties.Description = GetResourceString("SharingPlain");
Expand Down Expand Up @@ -386,7 +386,7 @@ void copyToClipboard(string content)

private void BtnLink_Click(object sender, RoutedEventArgs e)
{
copyToClipboard(string.Format("https://www.pixiv.net/member_illust.php?mode=medium&illust_id={0}", illustID));
copyToClipboard(string.Format("https://www.pixiv.net/artworks/{0}", illustID));
btnShareFlyout.Hide();
}

Expand Down

0 comments on commit 11dd79c

Please sign in to comment.